How does this work with the picture?

Jelly

Member
Hello Everyone,

Please check out the screenshot to see what I try to make:
http://awesomescreenshot.com/0e2jvu88a

I just want to put a picture to the side of my forums that it looks like it comes from under the forum, so I cut a little of the picture and try to put it on the right side of my forums.

Does anyone know how I can do it?
 
Absolutely position it after #content > .pageWidth.

Add something like this to CSS:
Code:
#content .pageWidth { position: relative; }
#content .pageWidth:after
{
    content: '';
    display: block;
    position: absolute;
    top: 100px;
    right: 0;
    width: 100px;
    height: 100px;
    background: url("path_to_your_image");
}
 
Top Bottom