MyBB Community Forums

Full Version: Sleeq header change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am wanting to drop the animated header around the logo and have found where it is being pulled from but can't figure out how to get it to show say, only the background or at worse drop an image there that is a solid color.   Blush
Look at the Header.css of the theme it should have the code for the animation image.
Removing this should make it stay still instead of moving
	animation: animatedBackground 10s linear infinite;
	-moz-animation: animatedBackground 10s linear infinite;
	-webkit-animation: animatedBackground 10s linear infinite;
	-ms-animation: animatedBackground 10s linear infinite;
	-o-animation: animatedBackground 10s linear infinite;
I actually want to remove the whole image where only the background color is showing.
For header, Everything is in header.css file change whatever you want.
(2016-04-05, 01:32 PM)Dark-Power-Invader Wrote: [ -> ]For header, Everything is in header.css file change whatever you want.

Thanks. That is what I needed.