MyBB Community Forums

Full Version: changing colors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can I change the color of the url links in my forum threads.
They are black, and I wanted them to be blue?
thanks
In global.css, add the following class at the bottom of it;
.post_body a:link, .post_body a:active, .post_body a:visited{
color: #3723F2;
}
.post_body a:hover{
color: #1F0CD2;
border-bottom: 1px solid #1F0CD2;
}
Two things to do. First, in the postbit_classic template, find:

<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">

change to:

<div id="pid_{$post['pid']}" class="post_body" style="padding: 5px 0 5px 0;">

Then, in global.css, add this:

.post_body a {
	color: #FFFFFF;
}

Change the colour to whatever you want.

Yaldaram sir Big Grin