Color change question

Is message board greying out your hair (at least what's left of it)? Let us help you here
Locked
Methen
Posts: 6
Joined: Tue Mar 23, 2010 5:20 pm

Color change question

Post by Methen »

I wasnt sure what to search under so Ill just ask

When you click to read a message I want to change the back ground in that areas to black and the text to yellow where would I change that at ?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Color change question

Post by Klemen »

You will need to change the style.css file. Open it in Notepad and change the first occurence of

Code: Select all

color : black;
to something like

Code: Select all

color : yellow;background-color : black;
To further customize the style file you can learn more about CSS functions here:
http://www.w3schools.com/css/
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Methen
Posts: 6
Joined: Tue Mar 23, 2010 5:20 pm

Re: Color change question

Post by Methen »

Ok this is the code I have as it is now aftew I made the change you recommended

Code: Select all

BODY, TD {
	color : yellow;background-color : black;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

TD.upper {
	color : #FFFFFF;
	background : #23559C;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

FONT.smaller {
	font-size: 10px;
}

table.entries {
	color : black;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	BORDER-RIGHT: #23559C 1px solid;
	BORDER-LEFT: #23559C 1px solid;
	BORDER-TOP: #23559C 1px solid;
	BORDER-BOTTOM: #23559C 1px solid;
}

A {
	color : #0084BE;
	text-decoration : underline;
}

A:HOVER {
	color : Red;
	text-decoration : none;
}

A.smaller {
	font-size: 10px;
	color : #0084BE;
	text-decoration : underline;
}

A.smaller:HOVER {
	font-size: 10px;
	color : Red;
	text-decoration : none;
}

INPUT {
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#000000;
	background-color:#FFFFFF;
}

HR {
	color: #B8CFE7;
	height: 1px;
}

font.ip {
	color : Gray;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 9px;
}
also I would like to get the topic in red and in the reply font color from black to yellow other wise you will not be abale to see it in a black back ground.

Here is the test link to my site the back ground is black but not when you click on a message or reply which I also want to be blackhttp://allbridges.info/Big-Gulp/mboard.php
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Color change question

Post by Klemen »

Firstly you have a wrong setting, that's why your posts don't have the same theme as the main page. In the settings.php file change

Code: Select all

$settings['mboard_url']='http://allbridges.info/Big-Gulp/mboard.php';
to exactly this:

Code: Select all

$settings['mboard_url']='http://allbridges.info/Big-Gulp';
Secondly note that any changes you make will only be visible on main page (mboard.php) and any new posts you make, old posts might not be effected by all the changes.

Thirdly - we can't help with every color combination, so try playing around the style.css file a bit - change a color code and see what it does :wink:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Methen
Posts: 6
Joined: Tue Mar 23, 2010 5:20 pm

Re: Color change question

Post by Methen »

ok there are two places to add the url address line 13 and line 20 in the settings do I make it the same address on both lines ?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Color change question

Post by Klemen »

Just the line that starts with $settings['mboard_url']
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Locked