Viewing 11 replies - 1 through 11 (of 11 total)
  • css problem, install firebug for firefox, right-click, inspect element and play with width, margins and padding.

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    Thanks, @gerbilk, I’ll try that now.

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    From what I’m seeing, I can’t find anyway to change it. Here’s what I got from firebug:

    <div id="bottom-content-1">
    <ul class="clearfix xoxo">
    <li class="widgetcontainer clearfix">
    <h5 class="widgettitle">Case Crown</h5>
    <div class="widgetcontent">
    <div class="textwidget">
    <a href="http://techgeec.com/wp-content/uploads/2009/12/CaseCrown.gif">
    <img class="aligncenter size-full wp-image-702" width="634" height="256" alt="CaseCrown" src="http://techgeec.com/wp-content/uploads/2009/12/CaseCrown.gif" title="CaseCrown"/>
    </a>
    </div>
    </div>
    </li>
    </ul>
    </div>

    From what you see, is there any way to change it?

    That’s the html, you need to change the corresponding CSS which is in the box on the right in firbug, under the style tab, will look something like

    .textwidget{
    width:400px;
    margin:20px;
    }

    look here for an introduction http://www.w3schools.com/css/

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    I really appreciate all of your help so far but i can’t seem to find the code that you’ve provided. Here’s all of the CSS that Firebug as found: http://techgeec.com/css

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    The link above is just a link to a post on my website displaying all of the CSS code.

    can you provide a link to a live page with the error?

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    Here ya go: http://techgeec.com/. Thanks again so much for all of your help.

    hi in your theme’s folder look for default.css (in css/styles) and on line 147 change

    #bottom-content-1, #bottom-content-2 {
    float:left;
    margin:0 10px 10px 0;
    overflow:hidden;
    width:320px;
    }

    to

    #bottom-content-1, #bottom-content-2 {
    float:left;
    margin:0 10px 10px 0;
    overflow:hidden;
    
    }

    if this doesn’t work as it should on every browser separate content 1 from content 2 (copy and paste so there are two) and set each at a different width.

    Thread Starter ipt2ggeec

    (@ipt2ggeec)

    It worked! Thank you so much for all of your help, I really appreciate it. Thanks again!

    no worries πŸ™‚

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Stretch Bottom Content Widget’ is closed to new replies.