MyBB Community Forums

Full Version: font color links and fontsize
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hey guys,

I have a problem with the color my forum links.

On the index page, I want all my titles ( Windows, Linux, Software, Hardware etc.. ) to be bleu, but some of them stay dark grey?

Also,
How do I make the font size bigger of those?


http://computerhelpforum.be/
[attachment=29961]

Cheers
Open your global.css and find:


a:link {
	color: #32557C;	text-decoration: none;
}

a:visited {
	color: #444;	text-decoration: none;
}

Change it to:

a:link, a:visited {
	color: #32557C;	text-decoration: none;
}

Color changed.

Next, find:

table {
	color: #000000;	font-size: 13px;
}

Change to:

table {
	color: #000000;	font-size: 15px;
}

Font size increased.
Edit: delayed response

navigate to forumbit_depth2_forum template of the active theme and add a span class for below code
<a href="{$forum_url}">{$forum['name']}</a>
it can be like this
<span class="myforum"><a href="{$forum_url}">{$forum['name']}</a></span>
you can use required css style for the class .myforum
.myforum a:link {color: #32557C!important;}
.myforum a:visited {color: #32557C!important;}
.myforum a:link {font-size: 14px!important;}

MikeInToshx

Thanks guys, going for the easy one though Big Grin

MikeInToshx

Although,

How do I make the fontsize of the topics 13 px? (http://computerhelpforum.be/thread-pc-op...t-ccleaner?)
But only that fontsize that changes? Not the others.