Hi, can anyone tell me what I have to change to remove the lines shown in the picture please.
Thanks
I don't get why they are there..
Anyways,
In your index.css
find :
background: url("../images/theme/frame_repeat.png") repeat-y scroll left top #FFFFFF;
replace with :
background: #FFFFFF;
Also search for :
#content_section div.frame {
background: url("../images/theme/frame_repeat.png") repeat-y scroll right top transparent;
display: block;
padding: 0 20px 0 0;
}
Replace with :
#content_section div.frame {
display: block;
padding: 0 20px 0 0;
}
And for line below navigation :
search for :
.navigate_section ul {
border-top: 1px solid #CCCCCC;
clear: both;
display: block;
font-size: 0.9em;
list-style: none outside none;
margin: 0;
overflow: hidden;
padding: 1em 0 0.5em;
width: 100%;
}
Replace with ;
.navigate_section ul {
clear: both;
display: block;
font-size: 0.9em;
list-style: none outside none;
margin: 0;
overflow: hidden;
padding: 1em 0 0.5em;
width: 100%;
}
I am assuming that you have curve theme ..
Thanks very much :)