• I want to put a custom background instead of the black borders on the side. When i go into my theme folder and the image folder in my ftp it only has jpegs for the header and post seperation bar. can anybody help me?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The borders aren’t an image. Find this in the css;

    #wrapper {
    position: relative;
    height: 100%;
    width: 700px;
    border-left: 10px solid black;
    border-right: 10px solid black;

    margin: 0 auto;
    background-color: #fff
    }

    The “border-left” and “border-right” are where the black bars are being generated.

    Thread Starter SDD

    (@sdd)

    ok thank you and to add something custom would i have to put path to the image similar to the hearder image and the border sep image and put the image in my image folder?

    Thread Starter SDD

    (@sdd)

    and real quick can somebody plese tell me how do i change the dang blue border from around my pictures lol

    similar to the hearder image and the border sep image and put the image in my image folder?

    That’s pretty much right on the money.

    This defines your background:

    body {
    position: relative;
    background: #333;
    height: 100%;
    font-family: Arial;
    text-align:left;
    color:#000
    font-size: 9pt;
    margin: 0px;
    padding: 0;
    text-align: center;
    }

    Temporarily change #333 to #FFF, and you will get a feel for what is happening. Then you will need to change that code to include your new image. Here is some info on background styling using css if you need it.

    https://www.w3schools.com/css/css_background.asp

    https://www.tutorialhero.com/tutorial-52-css_background_image_guide.php

    Best wishes!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How Do I Change The Background In The Benevolence Theme’ is closed to new replies.