Okay
  Public Ticket #2846158
removing portfolio thumbnail color overlay
Closed

Comments

  •  5
    Jorge started the conversation

    Hello,

    How do I remove the color overlay on hover in the portfolio thumbnails? 


    Thanks! 

  •  1,878
    Judith replied

    Hi Jorge,

    Please try this css:

    body .portfolio-items[data-col-num="elastic"] .work-info-bg {
        background-color: rgb(94 94 94 / 0%) !important;
    }

    Thanks.

  •  5
    Jorge replied

    Hello Judith,


    Thank worked!

     Is there a way I could control the opacity of the portfolio thumbnail color? instead of getting rid of the color all together? 

  •  8,847
    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):

    body .portfolio-items[data-col-num="elastic"] .work-info-bg {
        background-color: rgb(94 94 94 / 50%) !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  5
    Jorge replied

    Hello,

    That worked! thanks so much!