MyBB Community Forums

Full Version: Stop repeating of side image.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok lets see if i can explain this, how can i make the side image i have added to my forum stop repeating down the page? the image is only a sertain size so when the image finish it starts it again under it, how can i make it so only one image is used and when it is finished it just dosent display another?

[Image: side.gif]
no-repeat on the css line...
where abouts is this css line?
Change
background: url(images/left_image.gif);
to
background: url('images/left_image.gif') no-repeat;
in the left_img class (located in the Additional CSS section)
kool it works, thanks!