MyBB Community Forums

Full Version: Footer question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Idk if this is the right place to post this but here it is.

So I created a new bar right above my exsisting footer (light blue color). It has About Us and Contact Us. How do I change the text color of that row without changing the text below it?


Here's the new class I created in global.css:

}



#copyright2 {
	background-color: #00c6ff;
	padding: 3px 3px 3px 3px;
	text-align: center;
	font-size: 9px;
        
}

Here's what I have in templates in MyBB GoMobile:

<div id="copyright2">
<a href="http://carfanaticsforum.com/thread-20939.html">About Us</a> ยท
<a href="http://carfanaticsblog.com/contact/" target="_blank">Contact Us</a>
</div>

I want to change the text color on the blue row without messing up the text color for the light gray part of the footer.

[Image: 13953319439_132afa73eb_b.jpg]

I hope that makes sense, thank you.
#copyright2 a {
color: red;
}

Should do it
Thank you. Smile
#copyright2 a:hover {
color: black;
}