Tips & Tricks to use on your phpBB3 Forum.
-
LDM
- Site Admin
- Posts: 1786
- Joined: Thu May 29, 2008 6:51 pm
Post
by LDM »
Open : styles/prosilver/theme/colours.css
Find :
Code: Select all
html, body {
color: #536482;
background-color: #FFFFFF;
}
Replace #FFFFFF with your chosen hex colour.
-
Inner Circle
- Forum Member
- Posts: 2
- Joined: Tue Jan 19, 2010 10:11 pm
Post
by Inner Circle »
Excuse me for the maybe dumb question, but is ist possible to add an backround image ,instead of changing the backround color?
-
cisco007
- Staff
- Posts: 501
- Joined: Tue Oct 07, 2008 3:44 am
Post
by cisco007 »
sure you can, this is what i have on my colours.css file
Code: Select all
/*
--------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */
html, body {
color: #536482;
background-color: #FFFFFF;
background-image: url('image url');
background-repeat:repeat-x;
background-attachment:fixed;
}
change this:
to:
depending on which way you want your image to go! But I am sure you already knew that!
-
Inner Circle
- Forum Member
- Posts: 2
- Joined: Tue Jan 19, 2010 10:11 pm
Post
by Inner Circle »
Thank you very much
I´ll try that asap!