Change conten background

Hello

I would like to change the background image for content articles. My blog can you find here which has a medieval touch:

http://albiononlineblog.de/

And i would like to change the content background to this:

http://kingdomcomerpg.com/blog

Some kind of medieval borders with a touch of old paper if you know what i mean. Where can i edit this?

Thank you very much in advance

I see that you have already changed background image for post content. But for others wondering you can add image by using code like this:

.post-inner-content {
  background-image:url('link/to/your/image.jpg');
}

Just make sure to change link to background image you want to use on your website and add this code to Theme Options - Other - Custom CSS.

Thank your for your answer. Can you tell me how i can change the content bg image for the right navigation? Thank you in advance.

if you mean background for sidebar then you can do it by using code like this.

.well {
    background: url('https://colorlib.com/wp/wp-content/uploads/sites/2/colorlib-logo-top.png');
}

Just make sure to use replace url to image as my given example will add colorlib logo as background.

Nice thank you, it works. :smiley: