MyBB Community Forums

Full Version: Two background images on one page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way I can add multiple background images on a single skin? I am trying to have a vertical image on the left side of the page and a vertical on the right, both repeating only vertically, and only have a solid BG color in between them. Any help on this would be much appreciated! I only self-taught HTML myself, and because of this I don't know every nook and cranny of it.
You can either make both images into one (whatever the width of your forum is, leave the middle a solid color or simply transparent).

Or use CSS3, and do something like this:
#bgimages {
    background-image: url(image-left.png), url(image-right.png);
    background-position: left top, right top;
    background-repeat: repeat-y;
}