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;
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;
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
That worked. Thanks so much!