MyBB Community Forums

Full Version: Blue Links!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All my links suddenly turned blue! I edited in the index with this:

<style type="text/css">

<!--

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

a:active {color: #FFFFFF;text-decoration: none; }

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

a:hover {color: #FFFFFF; text-decoration: underline; }

-->

</style>

to fix it, but it only shows on the index. I put it in global.css too but it doesn't do anything. What is happening!

http://www.grimgaming.com is the website
You've got this in your global.css fiel:

body {
	background: #000000;
	color: #FFFFFF;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 0px;
	<style type="text/css">
	
	<!--
	
	a:link {
color: #FFFFFF; text-decoration: none;
}

a:active {
color: #FFFFFF;text-decoration: none;
}

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

a:hover {
color: #FFFFFF; text-decoration: underline;
}

-->
	
	</style>
	font-family: Tahoma, Arial, Sans-Serif;
	font-size: 11px;
}

a:active {
color: #FFFFFF; text-decoration: underline;
}

a:visited {
color: #FFFFFF;
}

a:hover {
color: #FFFFFF; text-decoration: none;
}

-->
	</style>
	font-family: Tahoma, Arial, Sans-Serif;
	font-size: 11px;
}

Don't know what you're trying to do here but this isn't going to work, you don't put HTML tags into a CSS file. Edit the stylesheet in advanced mode and sort that out.
I replaced my global.css with that (in simple) and saved it. It's still blue, it appears to be the unvisited links that are blue..
Fixed for now it seems, I just added a line of code..
No it's not going to work in simple mode, it needs to be in advanced mode like I said. You've still got HTML in there, you're going to have problems with this if you leave it. PM me admin login details and I'll sort it out.