Sidebar widgets at bottom?
-
Here’s the site.
http://thehungergamestribute.co.cc/If you scroll down to the bottom, you see two HTML codes I’ve posted to a Text widget. I tried adding more posts to see if the page would increase, but that didn’t work.
What’s the problem? Do I have a limit on the CSS code for sidebar length? Thanks!
-
I tried setting “WordPress should correct invalid XHTML” but that doesn’t help.
Anyone?
Help?? It’s been a week.
Thanks!Hello?
Almost a month now. Last post.
I see what I think are the text-widgets you are talking about– the t-shirt, the hunger games, twitter, the hit counter– yes? So what is the problem exactly? Do you want them to line up with the other widgets up top right? If so, those widgets are inside
div#pageand the widgets at the bottom are not. That is why they don’t line up. This could well be due to some of the markup errors on the page. You’ve got some closing tag mismatches that could easily blow the layout, just for starters.How do I fix all that?
Add those to in the div tags?Here’s the sidebar code from sidebar.php
<div id="sidebar"> <div style="margin-bottom: 10px;"><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/sidebar-feed.jpg" /></a></div> <?php if (!dynamic_sidebar('Sidebar')) : ?> <div class="sidebar-widget"> <div class="sidebar-header">Categories</div> <div class="sidebar-content"> <ul> <?php wp_list_categories('show_count=0&title_li='); ?> </ul> </div> </div> <div class="sidebar-widget"> <div class="sidebar-header">Archives</div> <div class="sidebar-content"> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </div> </div> <div class="sidebar-widget"> <div class="sidebar-header">Meta</div> <div class="sidebar-content"> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </div> </div> <?php endif; // dynamic_sidebar ?> </div>HELP??
Fix your broken table tags and other missing tags, as well as your bad doc type declaration, which is throwing IE into quirks mode and throwing off your display. Get a fresh copy of your theme and compare the code against your edits. Scroll down through your validation report to see source code and line numbers: and[Invalid] Markup Validation thehungergamestribute.co.cc/ – W3C Markup Validator
Would it be best to reinstall the theme and start over? I really have no major changes.
The topic ‘Sidebar widgets at bottom?’ is closed to new replies.