Thanks for using Chosen!
This theme does not have widget areas included, but you can use shortcodes instead to add dynamic content into any post or page on your site.
Chosen Pro also adds a sidebar and a number of other widget areas to the theme.
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. Can you help me out on this?
All sorted out on Chosen Gamer Support Forum. Thanks for the attention Ben.
You’re welcome 🙂
Here’s the thread for anyone interested in the solution: https://ww.wp.xz.cn/support/topic/3-widget-area-on-footer/