• hyldahl82

    (@hyldahl82)


    Hi,

    Is there a way to make the background not transparent and maybe white instead?

Viewing 1 replies (of 1 total)
  • Hi,

    To make site container background white open style.css file in your theme folder and find #wrapper-mid id style.css file and replace below CSS code

    #wrapper-mid {
        background: url("images/body_bg.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
        border-radius: 5px 5px 0 0;
        height: auto;
    }

    With this code

    #wrapper-mid {
        background: none repeat scroll 0 0 #FFFFFF;
        border-radius: 5px 5px 0 0;
        height: auto;
    }

    and save this file.

    Best,
    Gunjan

Viewing 1 replies (of 1 total)
  • The topic ‘Background color’ is closed to new replies.