• I copied code from my themes stylesheet, made a color adjustment and pasted the updated code in the custom css box, but nothing changes. I’m just trying to change the background color of the main container:

    .container {
    background-color: #bcae96;
    }

    Is there something I am missing? I’m sure there is a simple solution, but I don’t know what it is.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Post your site url for best results.

    Try:

    .container {
    background-color: #bcae96 !important;
    }

    It would depend on the theme where the custom css is loaded, right mouse and view page source, should show where it is loading!

    Try the !important keyword:

    .container {
    	background-color: #bcae96 !important;
    }

    or

    .container {
    	background: #bcae96 !important;
    }

    HTH

    David

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom CSS not working’ is closed to new replies.