Okay
  Public Ticket #291631
CSS not working?
Closed

Comments

  •  1
    Samu started the conversation

    I'm having trouble with the custom CSS not working. For example, I tried adding the following CSS to hide dates on blog posts, but it won't work: 

    .portfolio-items .col .work-info .vert-center p {

    display: none!important;

    }

    And this one I tried to use to hide the header border but that wouldn't work either:

    body #header-outer[data-transparent-header="true"].transparent { border: none !important; }

    HELP! :(

  •  8,839
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    .blog article.post .post-meta.no-img {
        display: none !important;
    }
    #header-outer {
        box-shadow: none !important;
    }
    
    Thanks


    ThemeNectar Support Team 

  •  1
    Samu replied

    That seemed to work. Thanks!