• I am using the Customizr theme.
    I changed the background color to a light gray and there is a white blank line at the top and bottom.
    When I scroll up, the header suddenly goes from lightgray to transparent white and the top thick white line disappears.

    I don’t want the thick white lines and I don’t want the header to change to white, I want it to remain lightgray.
    https://pixcl.com/wp/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi tomkinsrichard

    Try this custom CSS in Customize section Advanced options:

    hr.featurette-divider.__before_main_container {
        visibility: hidden;
    }
    .sticky-enabled .tc-header {
        height: auto!important;
        background: #fff;
        background: lightgray;
        filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF)";
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF)";
        border-bottom: 2px solid #E9EAEE;
        /* border-top: 0; */
    }

    Report if problem continues.

    Thank You!!

    Thread Starter tomkinsrichard

    (@tomkinsrichard)

    Thank you, that gets me really close. There is s thin white line just below the header when I scroll up.
    This is what I have in style.css right now,
    body, #main-wrapper, header.tc-header, footer#footer .colophon {
    background-color: lightgray;
    }
    /* END OF Change Customizr Background to Texture or Image */
    .row-fluid{
    border-bottom:0px;
    }
    footer#footer {
    border-top: 0px;
    }
    hr.featurette-divider.__before_main_container {
    visibility: hidden;
    }
    .sticky-enabled .tc-header {
    height: auto!important;
    background: #fff;
    background: lightgray;
    /* border-top: 0; */
    }

    What can I do about that very thin white line?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Customizr theme unexpected white lines and transparency’ is closed to new replies.