Okay
  Public Ticket #3105666
Text color in portfolio
Closed

Comments

  •  3
    Kevin started the conversation

    Hey, can u help me with filter text color. I don't know how to change filter button color and text in botton. I need this to be "dark". 


    Kevin 



    Attached files:  Screenshot 2022-08-17 at 11.48.58.png

  •  1,652
    Judith replied

    Hi Kevin,

    Thanks for keeping in touch.

    Please send in your website url so that we can check this out.

    Thanks.

  •  277
    Noah replied

    Hi Kevin,

    Can you try the following CSS:

    .nectar-post-grid-filters a{
        color:black !important;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    Cheers.

  •  3
    Kevin replied

    Hey, thanx it works, but button “filter” is still white, how can i change this one too? 

    Attached files:  4EBD3568-8A51-4443-90CF-F760D18F54FB.jpeg

  •  1,652
    Judith replied

    Hi Kevin,

    Please try this css:

    @media only screen and (max-width: 1000px){
    .nectar-post-grid-wrap .nectar-post-grid-filters h4 {
        color: red;
    } }

    Thanks.

  •  3
    Kevin replied

    Hey, it works, but the button is still white… Can i change this one too?



    Attached files:  286DA264-A4C4-4E77-83EC-BFDC55BF1158.jpeg

  •  8,410
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 1000px) {
        .nectar-post-grid-wrap .nectar-post-grid-filters h4 {
            color: #ff7b31 !important;
        }
    }
    .light .nectar-post-grid-filters a:after, .light .nectar-post-grid-filters h4:after, .light .nectar-post-grid-filters h4:before {
        background-color: #ff7b31 !important;
    }

    Thanks


    ThemeNectar Support Team