FrankFerter Posted June 5, 2008 Share Posted June 5, 2008 I can't figure this out and it is driving me crazy. At http://www.engagedlearning.net, in the right column, after the "recent posts" everything is half the column width and I can't get it to span the whole column. Below is the code that is controlling that portion. Any clue as to what is limiting it? Thanks! <div id="r_sidebar" class="clearfix"> <ul> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?> <li> <h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <li> <h2>Links</h2> <ul> <?php get_links(-1, '<li>', '</li>', ' - '); ?> </ul> </li> <?php endif; ?> </ul> </div> Link to comment https://forums.phpfreaks.com/topic/108854-limited-width-in-column/ Share on other sites More sharing options...
flyhoney Posted June 5, 2008 Share Posted June 5, 2008 Thats probably a HTML/CSS issue and not really a PHP issue. Link to comment https://forums.phpfreaks.com/topic/108854-limited-width-in-column/#findComment-558386 Share on other sites More sharing options...
DarkWater Posted June 5, 2008 Share Posted June 5, 2008 Check the CSS. Or post it for us. Link to comment https://forums.phpfreaks.com/topic/108854-limited-width-in-column/#findComment-558391 Share on other sites More sharing options...
FrankFerter Posted June 5, 2008 Author Share Posted June 5, 2008 CSS: /************************************* Right Sidebar **************************************/ #r_sidebar ul li ul { border-top: 1px solid #333; } #r_sidebar ul li ul li { border-bottom: 1px dotted #333; background: url(images/bullet-arrow3.gif) 5px 9px no-repeat; } #r_sidebar ul li ul li a{ color: #333; } #r_sidebar ul li ul li a:hover { color: #b30000; text-decoration: underline; } #r_sidebar ul li ul li ul li { border-bottom: 1px solid #333; /*IE Bug Fix */ border-top: 1px dotted #333; background: none; } #r_sidebar ul li ul li ul li a{ color: #333; } #r_sidebar ul li ul li ul { border: none; } #r_sidebar ul li ul li ul li a:hover { color: #b30000; } /*************** And then some more CSS that I have a suspicion might be involved as well...*******/ .clearfix:after { content: "."; clear: both; height: 0; visibility: hidden; display: block; } .clearfix { display: inline-block; /* Fixes IE/Mac */ Link to comment https://forums.phpfreaks.com/topic/108854-limited-width-in-column/#findComment-558463 Share on other sites More sharing options...
Buddski Posted June 5, 2008 Share Posted June 5, 2008 I had a quick look at your source code and found this <div id="l_sidebar" class="clearfix"> that line is just before <ul> <li id="tag_cloud" class="widget widget_tag_cloud"><h2 class="widgettitle">Tags</h2> might be worth checking out..You never know Link to comment https://forums.phpfreaks.com/topic/108854-limited-width-in-column/#findComment-558556 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.