MyBB Community Forums

Full Version: Grey to blue URL Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello atm my links on apart are a horrible colour the thread links

how do i change the links in threads from

[Image: a86939b1894d2c4a7650ea45084b7c8b.png] to http://google.com
the blue color
If you only want to change the color of links in posts rather than on the whole forum, add this to your global.css

.post_content a:link {
	color: #336699;
	text-decoration: none;
}

.post_content a:visited {
	color: #003366;
	text-decoration: none;
}

.post_content a:hover, .post_content a:active {
	color: #003366;
	text-decoration: underline;
}
(2012-09-25, 09:59 PM)YoshiOlly Wrote: [ -> ]If you only want to change the color of links in posts rather than on the whole forum, add this to your global.css

.post_content a:link {
	color: #336699;
	text-decoration: none;
}

.post_content a:visited {
	color: #003366;
	text-decoration: none;
}

.post_content a:hover, .post_content a:active {
	color: #003366;
	text-decoration: underline;
}

what happened here 3 links and look at 2

[Image: c27f3b4adf35b381bcc27953b1e7b80c.png]

wernt hovering over them either
The darker links are ones you have visited. If you want them the same color change

.post_content a:visited {
    color: #003366;
    text-decoration: none;
}

to

.post_content a:visited {
    color: #336699;
    text-decoration: none;
}
(2012-09-25, 10:08 PM)YoshiOlly Wrote: [ -> ]The darker links are ones you have visited. If you want them the same color change

.post_content a:visited {
    color: #003366;
    text-decoration: none;
}

to

.post_content a:visited {
    color: #336699;
    text-decoration: none;
}

Thank you very much! +repped
No problem Smile