Deleting the background
Re: Deleting the background
Ok , to do it transparent go:
ACP>>Display>>Colors>>CSS Stylesheet
Find:
and change it to:
ACP>>Display>>Colors>>CSS Stylesheet
Find:
- Code:
.bodyline{background-color:#1c1c1c;border:1px #fbf9f9 solid}
and change it to:
- Code:
.bodyline{border:1px #fbf9f9 solid}
sgeorge- Forumember
-
Posts : 556
Reputation : 15
Language : Greek - English
Location : Greece
Re: Deleting the background
So i copied the CSS into a word document and used the find feature and
Is not found
EDIT: So i found the code.. by searching just (.bodyline) and i found it and replaced it with what you gave me and nothing changed
- Code:
.bodyline{background-color:#1c1c1c;border:1px #fbf9f9 solid}
Is not found
EDIT: So i found the code.. by searching just (.bodyline) and i found it and replaced it with what you gave me and nothing changed
Re: Deleting the background
Hi,
You should have this in your CSS
To change the background on your forum you need to define it as transparent in your CSS, like this
If you want no borders around go the same thing with the border border: 1px solid transparent;
You should have this in your CSS
- Code:
.bodyline {
background-color: #1C1C1C;
border: 1px solid #FBF9F9;
}
To change the background on your forum you need to define it as transparent in your CSS, like this
- Code:
.bodyline {
background-color: transparent;
border: 1px solid #FBF9F9;
}
If you want no borders around go the same thing with the border border: 1px solid transparent;
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum