Mam problem s pozadim. Je to Wordpress. Chcem do sidebaru dat na pozadie 3 obrazky - horny, stredny a spodny. Problem je vtom, ze neviem dostat text/obsah/vypis sidebaru k hornej casti, tak aby sa opakoval stredny obrazok. Ked dam obsah do stredneho, tak sa vsetko zobrazuje, ale stale mam medzeru v podobe vysky horneho obrazku.
sidebar.php
Kód:
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<div id="sidebar-top"></div>
<div id="sidebar-center"><?php dynamic_sidebar( 'sidebar-1' ); ?></div>
<div id="sidebar-bottom"></div>
</div>
<?php endif; // end sidebar widget area ?><!-- #secondary .widget-area -->
style.css
Kód:
#sidebar-top {
background: url("images/bg-sidebar-top.jpg") no-repeat scroll left top rgba(0, 0, 0, 0);
height: 190px;
width: 288px;
}
#secondary {
background: url("images/bg-sidebar-center.jpg") repeat-y scroll left top rgba(0, 0, 0, 0);
width: 288px;
}
#sidebar-bottom {
background: url("images/bg-sidebar-bottom.jpg") no-repeat scroll left top rgba(0, 0, 0, 0);
height: 190px;
width: 288px;
}