MyBB Community Forums

Full Version: Logo Scrolling Backgorund
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i add a background scrolling in the logo?

I want it like <- snip -> if you go on their site you will see something thats at the background scrolling in the logo i want something like that please tell me how to do it??

Thanks! Smile

MikeInToshx

Add this to your header background css:

-webkit-animation:bgscroll 70s infinite linear;
#header {
background: #151515 url(http://i.imgur.com/g9RGj5k.png);
position: relative;
height: 160px;
border-bottom: 5px solid rgb(22, 66, 105);
text-align: center;
-webkit-animation: bgscroll 70s infinite linear;
}

Added but nothing scrolling ???

Anybody help me please?

MikeInToshx

Yes like that. That should work in Chrome.

Add this for other browsers:
-moz-animation: bgscroll 70s infinite linear;
-ms-animation: bgscroll 70s infinite linear;
-o-animation: bgscroll 70s infinite linear;
It worked i found out from another site by doing inspect element lol Toungue

Thanks though Smile