PHThunder
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Themes and Templates
In reply to: separated postsYeah! thats it
i have connect it on the css with
.post {
background-image:url(plaatjes/plaatjes/achtergrondtext.png);
background-repeat:repeat;
padding-left:5px;
padding-right:5px;
padding-bottom:5px;
}now its working correct!! 😀
Forum: Themes and Templates
In reply to: separated poststhis is my index.php
very basic als you can see
<?php get_header(); ?> <br /> <br /> <div id="wrapper"> <div id="main"> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><?php the_title(); ?></h1> <h4>Geplaatst op <?php the_time('F jS, Y') ?></h4> <p><?php the_content(__('(more...)')); ?></p> <hr> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> </div> <?php get_sidebar(); ?> </div> <div id="delimiter"> </div> <br /> <br /> <?php get_footer(); ?>and this is my style
body { background:url(plaatjes/plaatjes/achtergrond.png) no-repeat center center fixed; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-size: cover; color:#FFFFFF; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px; } #wrapper { display: block; width:900px; margin-left: auto; margin-right: auto; background-image:url(plaatjes/plaatjes/achtergrondtrans.png); background-repeat:repeat; padding-left:15px; padding-top:15px; padding-right:15px; padding-bottom:15px; } #header { background-image:url(plaatjes/plaatjes/achtergrondtrans.png); background-repeat:repeat; padding-left: 10px; padding-top:10px; padding-bottom:20px; clear:both; } #header1 { width:930px; margin-left: auto; margin-right: auto; } #bovenmenu{ float:left; display:block; display:inline; } #content { width: 73%; background-image:url(plaatjes/plaatjes/achtergrondtext.png); background-repeat:repeat; padding-left:5px; padding-right: 5px; float:left; } #sidebar { width: 23%; border: 2px #000000 solid; float: right; padding-left:5px; background-image:url(plaatjes/plaatjes/achtergrondtext.png); background-repeat:repeat; } #sidebar1 { width: 23%; border: 2px #000000 solid; float: right; padding-left:5px; background-image:url(plaatjes/plaatjes/achtergrondtext.png); background-repeat:repeat; margin-top:15px; } #delimiter { clear: both; } #footer { border-top: 10px #0092fb solid; background-image:url(plaatjes/plaatjes/achtergrondtrans.png); background-repeat:repeat; float:left; clear:both; width:100%; text-align:center; margin:0px auto 0px auto; } #footer-1 { background-image:url(plaatjes/plaatjes/achtergrondtext.png); background-repeat:repeat; float:left; clear:both; width:100%; margin:0px auto 0px auto; } #footertext{ width:930px; margin-left: auto; margin-right: auto; } .title { f ont-size: 11pt; font-family: verdana; font-weight: bold; }
Viewing 2 replies - 1 through 2 (of 2 total)