• rollingtheberries

    (@rollingtheberries)


    Helloâ€â€? I am a newbie to wordpress and web stuff in general. I posted my first blog entry today (www.rollingtheberries.com) and tried to get some image gallery plugins to work (none of which I managed) and for some reason my sidebar has gone haywire. It is now aligned to the bottom and although I have deactivated all the plugins I was looking at, I can’t seem to work out what has happened and I can’t get it back to the top. I know it is wrong in FF and Safari, but I don’t have any other browsers installed so I’m not sure about the rest. My theme is a slight variation on Minimaplus. Any suggestions/help would be much appreciated.

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

    (@lawtai)

    you need to edit the CSS file and add either overflow:hidden to the menu CSS or you’ll need to widen the sidebar region

    Thread Starter rollingtheberries

    (@rollingtheberries)

    Thank you for the tips. I know this is probably extra simple stuff, But are you refering to the style.css file and could you please tell me how I can adjust overflow. Thanks again

    lawtai

    (@lawtai)

    yep, in the style.css file for the theme you’re currently using. Try adding this line:

    overflow: hidden;

    into the following from your style.css sheet

    #sidebar ul {
    margin:0 0 1.5em;
    padding:0 0 1.5em;
    padding-bottom: 1em;
    border-bottom:1px dotted #ccc;
    list-style:none;
    }

    should end up like this:

    #sidebar ul {
    margin:0 0 1.5em;
    padding:0 0 1.5em;
    padding-bottom: 1em;
    border-bottom:1px dotted #ccc;
    list-style:none;
    overflow:hidden;
    }

    Thread Starter rollingtheberries

    (@rollingtheberries)

    Thanks for that but I still seem to have the same problem. I tried increasing the width of the sidebar as well but nothing seems to be fixing it. It is strange because the fault seemed to just happen out of thin air but I know it is related to this theme.

    lawtai

    (@lawtai)

    try adding an overflow:hidden to your #content section

    Thread Starter rollingtheberries

    (@rollingtheberries)

    nup, still no joy. Should I be looking at the minimum and maximum widths for #content, #main, and #sidebar? Should #main and #sidebar add up to the #contents width? Thanks for all this fussing.

    lawtai

    (@lawtai)

    oh hmm, lol one last try, put overflow:hidden in your #menu? and from the looks of your CSS, the #main and #sidebar should add up to #contents. If anything try leaving overflow:hidden in all 3 areas and see what happens.

    lawtai

    (@lawtai)

    actaully, in looking at your css, you forgot left out a semi-colon:

    #sidebar { margin-top: 0.5em; width: 210px; float: right; vertical-align: top }

    you need a semicolon after top;

    that could be what’s causing the problems

    Thread Starter rollingtheberries

    (@rollingtheberries)

    Thanks, I am using GoLive to edit my css so it must be leaving that semi-colon out. But wouldn’t you know it, my server is down, so I will have to check out those tests tomorrow. Thanks again for your help and I’ll let you know how I go.

    Thread Starter rollingtheberries

    (@rollingtheberries)

    Thanks for the help yesterday. I seem to have go it working in FF and Safari, but now the whole content is aligned left in IE rather than centred over the background image. Any tips for this one? Taa.

    lawtai

    (@lawtai)

    looks fine for me in IE 6

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Sidebar strangeness’ is closed to new replies.