Simple and Orange!
-
Thanks 🙂
Very nice, except I didn’t notice that it’s NOT widget ready, so I wasted a bit of time customizing the css. I don’t know how (and don’t have the time to figure it out) to make your theme widget-ready. My humble suggestion is that in your description of the theme you clearly state it’s not widget-ready.
Well, I poked around. In the functions file, I had to change the default h2 to h3. Then in the sidebar file, I moved some of the code around to fix it, and then I used “sidebar 1” to wrap the blogroll and “sidebar 2” to wrap nothing but the widgets will sit between sidebar 1 and your Meta. The code is down below. Thanks for the theme!
<!-- Sidebar Start --> <div id="sidebar"> <div class="rightPan"> <span class="stc"> </span> <h3>Browse by Categories</h3> <ul> <?php wp_list_categories('show_count=1&title_li='); ?> </ul> <div class="gbc"><span class="sbc"> </span></div> </div> <!-- browse by Tag--> <div class="rightPan"> <span class="stc"> </span> <h3>Browse by Tag</h3> <div class="tags"> <?php wp_tag_cloud('smallest=10&largest=17&number=100&orderby=name&order=ASC'); ?> </div> <div class="gbc"><span class="sbc"> </span></div> </div> <!-- browse by tag box --> <div class="rightPan"> <span class="stc"> </span> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 1') ) : ?> <h3>Blogroll</h3> <ul> <?php wp_list_bookmarks('categorize=0&title_li='); ?> </ul> <?php endif; ?> <div class="gbc"><span class="sbc"> </span></div> </div> <div class="rightPan"> <span class="stc"> </span> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 2') ) : ?> <?php endif; ?> <div class="gbc"><span class="sbc"> </span></div> </div> <div class="rightPan"> <span class="stc"> </span> <h3>Meta</h3> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> <div class="gbc"><span class="sbc"> </span></div> </div> </div> <!-- Sidebar End -->Hi Kurowski, I took the changes you made to the sidebar but now I wanted to remove the Browse by Tag, Meta and empty gray widget. I’m very new to this so am having a lot of difficulty removing these sections without messing up the entire code. Can you tell me how to remove?
Thanks so much!!
The topic ‘Simple and Orange!’ is closed to new replies.