Re: Your IP Address is: /your Ip address/Copyright © 2008 yourname. Powered by Zen C

Originally Posted by
stevesh
Find this in the stylesheet.css file
.smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
font-size: 0.9em;
}
and add color:#XXXXXX; xxxxx being the hex value of the color you want.
You need to breakout the section that you want to be "special" by itself. So based on steveshs' post and say you wanted to make a change to #siteinfoCredits only.
Original code:
.smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
font-size: 0.9em;
}
1) cut out #siteinfoCredits (be sure to leave a comma and a space between each group)
.smallText, #siteinfoLegal, #siteinfoStatus, #siteinfoIP {
font-size: 0.9em;
}
2) Paste new section below original code by itself and follow the pattern of the original code making sure to use open and closing brackets
.smallText, #siteinfoLegal, #siteinfoStatus, #siteinfoIP {
font-size: 0.9em;
}
#siteinfoCredits {
font-size: 0.9em;
blah blah blah;
blah blah blah;
blah blah blah;
}That way you are controlling that one category and not the whole line. You can do this for any that are grouped together for a more fine control of attributes.
I hope this makes sense and helps 
Good Luck
0be1
"Give me one hundred preachers who fear nothing but sin and desire nothing but God, and I care not whether they be clergymen or laymen, they alone will shake the gates of Hell and set up the kingdom of Heaven upon Earth." - John Wesley