Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Multiquote (on) Multiquote (off)
Add Reply
Font Color of Forum Descriptions
Topic Started: Dec 4 2013, 01:54 PM (786 Views)
HowitsDone101
Member
[ * ]
I want to change the font color of all forum descriptions to hex #000055.

For example, I want News and Announcements, Rules and Principles, etc. to be hex #000055.

I'm not sure where to put the hex.

Here is a link to my site.

http://w11.zetaboards.com/Instruments_of_Order/index/

Help is appreciated. Thanks.
Offline Profile Quote Post Goto Top
 
(Wastelander)
Member Avatar
Member
[ * ]
HTML can be used in forum descriptions like so.
Code:
 
<font color="#000055">Forum Description Here</font>
Offline Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
I'm not familiar with where html goes. Where do i put that code?
Offline Profile Quote Post Goto Top
 
(Wastelander)
Member Avatar
Member
[ * ]
HowitsDone101
Dec 5 2013, 12:43 AM
I'm not familiar with where html goes. Where do i put that code?
Just edit your forum descriptions, and place it there.
Offline Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
It didn't work. Is there a way to do it in forum appearance?
Offline Profile Quote Post Goto Top
 
(Wastelander)
Member Avatar
Member
[ * ]
HowitsDone101
Dec 5 2013, 01:27 PM
It didn't work. Is there a way to do it in forum appearance?
It works, it's just the color that your using.
It pretty much looks black. Try using a different color like red or something.
code
 
<font color="#FF3300">Forum Description Here</font>
Posted Image
Edited by (Wastelander), Dec 5 2013, 01:55 PM.
Offline Profile Quote Post Goto Top
 
Helena
Member Avatar
M is for Mod

The font tag is deprecated, so if you go that way, it is better to use the current HTML markup for color:

Code:
 
<span style="color:red">your text here</span>

(It still works for now, but may not in the future.)

However, you can change the text color of all the forum descriptions here in your CSS:

Themes > Theme Appearance
:

Code:
 
.c_forum {
color: #FF0000;
}


Change the red hex color (#FF0000) to whatever you wish the forum description text to be.
Online Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
I made a mistake. I don't want to change the color of the forum description. I want to change the color of the forum heading or the words just above the forum description.

Like the 'News and Announcements'. I thought that was the forum description
Offline Profile Quote Post Goto Top
 
Helena
Member Avatar
M is for Mod

Try this:

Code:
 
.category h2, .category h2 a {
color:#000055;
}



you can either find those sections in your CSS and edit, or just add that whole bit at the bottom. Either should work.
Online Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
It changed what you mentioned it would. How do I change the font of News and Information and Rules & Principles in this link?

http://w11.zetaboards.com/Instruments_of_Order/index/
Offline Profile Quote Post Goto Top
 
Helena
Member Avatar
M is for Mod

Guests cannot see those links, so its hard to know what exactly you are wanting to change.
Online Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
Edit: Oh right. Um, its the link of the individual forums, not the group of forums. How do I change those. I'll post a pic in a sec.

So in the pic below, how do I change the color of News and Information and Rules & Principles?

Posted Image
Edited by HowitsDone101, Dec 6 2013, 04:24 PM.
Offline Profile Quote Post Goto Top
 
Jason
Member Avatar
Member
[ *  *  *  *  * ]
This bit -

Code:
 
.c_forum strong a {
color:#ffffff;
}

There is also this -

Code:
 
.c_forum strong a:hover {
color:#f6f6f6;
}

which is the color of that particular text when it is hovered over.

EDIT: the hex codes I posted are just examples, you need to change them to suit.
Edited by Jason, Dec 6 2013, 05:09 PM.
Offline Profile Quote Post Goto Top
 
(Wastelander)
Member Avatar
Member
[ * ]
HowitsDone101
Dec 6 2013, 04:14 PM
Edit: Oh right. Um, its the link of the individual forums, not the group of forums. How do I change those. I'll post a pic in a sec.

So in the pic below, how do I change the color of News and Information and Rules & Principles?


So you only wanna change the color of News and Information and Rules & Principles
try using the code below. Add it ---> Below the Board and change the colors.
Code:
 
<script type="text/javascript">
$("a[href*='forum']:contains(News and Information)").css("color", "red");
$("a[href*='forum']:contains(Rules & Principles)").css("color", "blue");
</script>
Posted Image
Offline Profile Quote Post Goto Top
 
HowitsDone101
Member
[ * ]
Didn't seem to work Lout

How do I do it with a hex color Wastelander? This one specifically..

#000055
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · ZetaBoards Support · Next Topic »
Add Reply