Hello
How do i make an image be the background, positioned at the bottom and to repeat horizontally in MyBB?
Thanks
Tom
Printable View
Hello
How do i make an image be the background, positioned at the bottom and to repeat horizontally in MyBB?
Thanks
Tom
put this in css/replace the body bit with it:
It's at the top and repeats.Quote:
body
{
background-image: url(YOURFORUM.COM/FILE.GIF);
background-repeat: repeat-x
}
i need it to be at the bottom :P
body
{
background-image: url(YOURFORUM.COM/FILE.GIF);
background-repeat: no-repeat;
background-position: bottom center
}
I THINK that will work. That's for bottom center. If you want it for bottom right I think you put bottom right. :P