Welcome Guest [Log In] [Register]
This board has been archived and is no longer accepting new questions. If you have a support question for your ZetaBoard, please visit us at the new support board. Registration is free and easy.


Visit the NEW ZetaBoards Support forum!

Username:   Password:
Locked Topic
[Solved]Help. Text and table color problems.
Topic Started: Feb 28 2008, 05:10 PM (528 Views)
robolynn
Member
[ *  * ]
I need to change the text color in this area on the bottom bar:

Quote:
 
Mark all forums as read ------ 3:30 PM Feb 28


Looking in the documentation, I see the code for this area is .right, but I cannot find it in the CSS stylesheet.

I also need to change the table color shown to the left of this bar as you make a reply to a thread:

Quote:
 
Last 5 Posts


But I do not know which code changes that.

Thanks.
Edited by robolynn, Feb 28 2008, 05:12 PM.
Offline Profile Goto Top
 
ZapTap
Member Avatar
Member
[ *  *  *  * ]
you have to add the first one to the CSS, and the second is td.c_desc
Offline Profile Goto Top
 
robolynn
Member
[ *  * ]
I'll try the td,c_desc change. Thanks.

Quote:
 
you have to add the first one to the CSS


Something like this?


Code: HTML
 
.right{
color:#fff;
}


Tried doing that, and it did nothing.
Edited by robolynn, Feb 28 2008, 05:38 PM.
Offline Profile Goto Top
 
Chris
Member Avatar
Member
[ *  *  *  * ]
To change this part:
Quote:
 
Mark all forums as read ------ 3:30 PM Feb 28


Change:
Quote:
 
#foot_links { ... }

I dont know all the stuff inside, so i replaced it with ...
To change the font color, look for color: #... or if it is not there, add it.
Quote:
 
color: #...;

And replace ... with your color hex.
Offline Profile Goto Top
 
robolynn
Member
[ *  * ]
This code wasn't in the CSS, so I put it in like this, and it still did not change the color:

Code: HTML
 
#foot_links {
color:#000;
}
Offline Profile Goto Top
 
Viral
Member Avatar
i'm stanley nao
[ *  *  *  *  * ]
It should be there, add that CSS Chris showed you to the bottom. If it changes, it means it was in your CSS.
Offline Profile Goto Top
 
Nicola
Darth Vader's Sewing Instructor
[ *  *  *  *  *  *  * ]
robolynn
Feb 28 2008, 06:47 PM
This code wasn't in the CSS, so I put it in like this, and it still did not change the color:

Code: HTML
 
#foot_links {
color:#000;
}
Right, because what you really want is this :P

Already in the CSS (If it's not you're still needing to edit those themes you got from that board :-/ )
Quote:
 
#foot a,#foot a:hover {
color:#777;
}


On the left, they're links. The #foot td part with color: #777 controls the text on the left by the theme selector.

Last 5 Posts (Add to the end of the CSS)

Quote:
 

.topic h2.special {
color: #HEX;
}


Offline Profile Goto Top
 
robolynn
Member
[ *  * ]
That did the trick.

Thanks Nicola!
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Theme & Code Help · Next Topic »
Locked Topic