2beata 4 theme help needed

Started by palmer91, December 15, 2008, 03:09:07 AM

Previous topic - Next topic

palmer91

im trying to change the background of my core theme to a picture i have and trying to change the theme colour from blue to a green/see through colour can anyone help me with this or can anyway thats knows how to do this please help me do it as the blue doesnt really go with my site.


thanks in advance

Gary

For the images, you'll need to use your Graphics editor on images like catbgs, titlebgs and the tabs, for the general colours you'll need to edit the CSS files.
Gary M. Gadsdon
Do NOT PM me unless I say so
War of the Simpsons
Bongo Comics Fan Forum
Youtube Let's Plays

^ YT is changing monetisation policy, help reach 1000 sub threshold.

Bugpac ™

a lot of them gifs are scaleable as well, so changing to a non uniform picture may turn out kinda funny youll have to get rid of whatever does the scaling...

SavingSaraSidle

#3
Find (in style.css)

/* The main body of the entire forum. */

body {
background: #FFFFFF;
margin: 0;
padding: 0px 15px 0 15px;
}


and change it to

/* The main body of the entire forum. */

body {
background: #FFFFFF;
   background-image: url("yourimageurlhere.gif");
margin: 0;
padding: 0px 15px 0 15px;
}


I always make my backgrounds fixed with no repeating, like HERE

body {
background: #FFFFFF;
   background-image: url("yourimageurlhere.gif") no-repeat fixed center center;
margin: 0;
padding: 0px 15px 0 15px;
}


Hope this helps.
Good Luck,
SavingSaraSidle
SMF Version: 1.1.8
PHP Version: 5.2.8
MySQL Version: 5.0.67
Apache Version: 2.2.11

SavingSaraSidle



We look for mistakes in others,
because we hate the ones in ourselves.

Kermit

Quote from: SavingSaraSidle on December 16, 2008, 03:31:27 AM
Find (in style.css)

/* The main body of the entire forum. */

body {
background: #FFFFFF;
margin: 0;
padding: 0px 15px 0 15px;
}


and change it to

/* The main body of the entire forum. */

body {
background: #FFFFFF;
   url("yourimageurlhere.gif");
margin: 0;
padding: 0px 15px 0 15px;
}


Hope this helps.
Good Luck,
SavingSaraSidle


code for background image is not correct

it should be like this


/* The main body of the entire forum. */

body {
   background: #FFFFFF;
    background-image: url(images/background.gif);
   margin: 0;
   padding: 0px 15px 0 15px;
}

   


background.gif should be located in images directory of your theme
My Mods
Please don't PM/mail me for support,unless i invite you
Formerly known as Duncan85
Quote
"Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe."

A. Einstein

Gary

Also, that will only change the background itself, nothing else, so if you want the catbg's titlebgs and tabs in green also, those wont be changed, nor will the windowbgs etc...

If you dont want it to repeat horizonatally, use this:

background-image: url(images/filename.gif) repeat-x;

and vertically you use repeat-y instead.

For more information on CSS, take a look on http://w3schools.com
Gary M. Gadsdon
Do NOT PM me unless I say so
War of the Simpsons
Bongo Comics Fan Forum
Youtube Let's Plays

^ YT is changing monetisation policy, help reach 1000 sub threshold.

Advertisement: