MyBB Community Forums

Full Version: Square Theme, How to change the color of icons in the header?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello again! I have a little trouble this time with changing the color of the icons to match my color of the header...
[Image: 99141ab33ebc12d636ff7d6a3c8d05b7.png]
Please help me, Thanks in Advance, TD Smile
Open Square.css in advance mode

Search this:

.menu ul li a:link, .menu ul li a:visited {
  	color: rgba(255, 255, 255, 0.5);
  	text-decoration: none;
  	transition: all 0.5s ease;
}

.menu ul li a:hover, .menu ul li a:active {
  	color: rgba(255, 255, 255, 1);
  	text-decoration: none;
  	transition: all 0.5s ease;
}

Change the "color" property for what you like. Actually it has rgba (red, green, blue, alpha) to make that effect of transparency.
Thanks! Big Grin
woooooooooooooooo thanks i surch for this Smile and i found it