3-Widget Area on Footer
-
Hey Ben, I’m using Chosen Gamer on a project and was asked to add a 3 Widget Area on the Footer. I did created the Widgets Areas, but somehow it does not display the 3 divs side-by-side.
Here’s the CSS
.footer-item { float: left; width: 33%; padding-bottom: 10px; } .footer-item ul { padding-left: 15px; }
and the html code
<div class="footer-item"> <?php if(is_active_sidebar('rodape_widgets-1')){ dynamic_sidebar('rodape_widgets-1'); } ?> </div> <div class="footer-item"> <?php if(is_active_sidebar('rodape_widgets-2')){ dynamic_sidebar('rodape_widgets-2'); } ?> </div> <div class="footer-item"> <?php if(is_active_sidebar('rodape_widgets-3')){ dynamic_sidebar('rodape_widgets-3'); } ?> </div>
I ran a quick lookup on the the theme CSS, but could not locate the code that is blocking the divs to show it properly side-by-side.
Can you help me out on this?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘3-Widget Area on Footer’ is closed to new replies.