missmacphisto
Member
Posted 2 weeks ago #
I'm building this site and can't figure out how to get rid of the dotted white border surrounding all the different regions of the site (header, sidebars, ect). I'm not sure at this point if I want to make it go away altogether or change it to a solid black but ... how would one go about modifying it? I'm looking at the "theme options" part of the dashboard and I can't seem to find it. Could someone please steer me in the right direction? I'm stumped.
jrav001
Member
Posted 2 weeks ago #
You will have to edit your css file. There are three things that need to be changed (see below). Change the "dashed" to "solid" for a solid line and the #CCCCCC to #000000 for black, or remove those lines to remove the border.
td#left {
background:#000000 none repeat scroll 0 0;
border-right:1px dashed #CCCCCC;
padding:10px;
vertical-align:top;
}
td#right {
background:#000000 none repeat scroll 0 0;
border-left:1px dashed #CCCCCC;
padding:10px;
vertical-align:top;
}
div.horbar2 {
background:#991B1E none repeat scroll 0 0;
border-bottom:1px dashed #CCCCCC;
height:5px;
}