• Hi,

    I have just updated to 3.3.26 on my test website and the remove Grey Bar between Navbar and Slider code snippet is not working anymore

    /* START OF Change Grey Bar between Navbar and Slider */
    header.tc-header {
    border-bottom: 0;
    }
    /* END OF Change Grey Bar between Navbar and Slider */

    Thanks for looking at it.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try this

    /* START OF Change Grey Bar between Navbar and Slider */
    .tc-sticky-header .tc-header {
    border-bottom: 0px;
    }
    /* END OF Change Grey Bar between Navbar and Slider */
    Thread Starter argylew

    (@argylew)

    Hi rdellconsulting,

    Thanks for the quick response.

    It is still not working… the grey bar is not removed.

    Link to site?

    Thread Starter argylew

    (@argylew)

    Sorry… it’s a test website not accessible directly from the net.

    I did some test: I removed all customizations from it: the style.css has only the snippet you just posted here and the is no functions.php.

    I’m also using a child theme with child themify.

    It didn’t worked, the issue is still present. It was working fine prior to todays version, I think it was 3.3.23.

    Can I do something else to help you out?

    can you share you child-theme style.css?

    Do you have any active caching plugin?

    Thread Starter argylew

    (@argylew)

    no active caching plugin… all modification I do are displayed after a browser refresh

    Here’s the content of style.css

    /*
    Theme Name: MainTest
    Version: 1.0
    Description: A child theme of Customizr
    Template: customizr
    */
    
    @import url("../customizr/style.css");
    
    /* START OF Change Grey Bar between Navbar and Slider */
    .tc-sticky-header .tc-header {
    border-bottom: 0px;
    }
    /* END OF Change Grey Bar between Navbar and Slider */

    So this is unneeded for customizr theme
    @import url("../customizr/style.css");

    you can remove it.

    .tc-sticky-header .tc-header {
    border-bottom: 0px;
    }

    This will be applied just if you use the sticky header.
    A simple

    header.tc-header {
    border-bottom: 0px;
    }

    as you had before should work.
    Cannot see any other reason why this shouldn’t work.
    And if I replace my style with yours (and I have the sticky header) it works fine…

    Thread Starter argylew

    (@argylew)

    ok… I will try with a new installation

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Remove Grey Bar snippet not working after 3.3.26 update’ is closed to new replies.