Mám blog: www.gepid.sk (wordpress)
A mám tam stianutú tému ktorú "upravujem"
A chcem mať text široký od začiatku headeru po začiatok menu.
index.php
Kód: Vybrať všetko
<div id="novinka">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<ul class="post" id="post-<?php the_ID(); ?>">
<li class="entry">
<div class="home_image"><?php getImage('1'); ?></div>
<div class="home_txt"><h1 class="<?php echo (is_sticky() ? 'sticky' : ''); ?>"><a class="list_title" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?> </div>
</li>
</ul>