• Resolved gregw89

    (@gregw89)


    I want to remove the line on my theme that separates the sidebar widget area from my content area. I am not using any widgets, and my content overlaps that area, so I have no need for the separating line. I cannot figure out exactly how to remove this. I’ve placed blank text boxes in all widget areas, but the line still remains. I’m using the idream theme.

    My website: remembereddreamz.com

Viewing 6 replies - 1 through 6 (of 6 total)
  • In this section, line 420

    #maincol {
        border-right: 1px dotted #C9C9C9;
        display: block;
        float: left;
        padding-right: 16px;
        width: 571px;
    }

    change border-right to
    border-right: none;

    Thread Starter gregw89

    (@gregw89)

    Thanks, but I tried that and it still shows up. Any other possibility?

    That takes it out here in Firebug.

    try changing the line to
    border-right: none !important;

    Thread Starter gregw89

    (@gregw89)

    That still didn’t change it. In the style.css file, this is what I have:
    #maincol {
    display: block;
    width: 571px;
    float: left;
    padding-right: 16px;
    border-right: none !important;
    }

    Is there another section that I should change?

    I am looking at your website and the line is gone. Try clearing your browser cache and/or refresh the screen a few times – if you are on a PC CTRL + SHIFT + R

    Thread Starter gregw89

    (@gregw89)

    That worked. Thanks so much!

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

The topic ‘Removing Sidebar Separator Line’ is closed to new replies.