Jump to content

Limited width in column


FrankFerter

Recommended Posts

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

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 */

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.