Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Aiheen aloitti: cryptic3 - syyskuu 15, 2011, 08:21:16 AP

Otsikko: Remove lines
Kirjoitti: cryptic3 - syyskuu 15, 2011, 08:21:16 AP
Hi, can anyone tell me what I have to change to remove the lines shown in the picture please.

Thanks

Otsikko: Re: Remove lines
Kirjoitti: Ricky. - syyskuu 15, 2011, 08:46:19 AP
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 ..
Otsikko: Re: Remove lines
Kirjoitti: cryptic3 - syyskuu 15, 2011, 09:06:20 AP
Thanks very much :)