• So I have been working on making some changes to the header on customizr pro on a site i’m working on at http://sftjre.wpengine.com/ I am looking to add a texture to the header area and I have the texture image saved in the media library. I have the following input into the Custom CSS tab inside of customizr (maybe possible fix would be child theme?)

    /*Cameron\’s change to remove grey box on sliders.*/
    .carousel-caption {
    background: rgba(0, 0, 0, 0.0);
    }

    /*This CSS is to add custom backgrounds to header as requested by Kaaren*/
    header.tc-header {
    min-height: 45px;
    background: #663300;
    background-image: url(“wp-content/uploads/bg_body.jpg”);
    border-bottom: 10px solid #D7D3B0;
    border-top: 5px solid #D7D3B0;
    }

    This code works for what I want in the previewer but when saved becomes this and only shows the background color.

    /*Cameron\’s change to remove grey box on sliders.*/
    .carousel-caption {
    background: rgba(0, 0, 0, 0.0);
    }

    /*This CSS is to add custom backgrounds to header as requested by Kaaren*/
    header.tc-header {
    min-height: 45px;
    background: #663300;
    background-image: url(\”wp-content/uploads/bg_body.jpg\”);
    border-bottom: 10px solid #D7D3B0;
    border-top: 5px solid #D7D3B0;
    }

    Notice the addition of the slashes inside the url parenthesis. So possible fixes anyone knows? Is the error in my CSS as I am fairly new to this.
    Thank you for your help.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[There: Customizr Pro] CSS help (possible bug?)’ is closed to new replies.