MyBB Community Forums

Full Version: Showing blue links help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey
i was wondering how do i get the blue link remove.
As it seems to be a cache problem for everyone not just me, that some links are green which is the regular color but some are blue.

i dont know how to clear cache on mybb & search on it but no result.
is it cache problem or something else? cos i edited the global.css of it & it seem to be having this problem.


www.codegreenforum.com
anyone can help me out?
Your body class is messed up. It's this:

body {
	background: #ffffff url(../../../images/venue/red_09.png) repeat-x;
	color: #000;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	
	
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

Should be:

body {
	background: #ffffff url(../../../images/venue/red_09.png) repeat-x;
	color: #000;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	
	
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
}
which file do i edit this in?
ACP > Templates & Style > **choose theme** > global.css > Edit in Advanced Mode.