Okay
  Public Ticket #1510975
Hidden specific element on mobile
Closed

Comments

  •  1
    Gianluca started the conversation

    Hi!

    Hi need to hide a specific element on mobile view. I know that I can hide a coloumn, but I have to hide quote element under profile pic (you can see on url).

    Which is the best solution?

  •  9,080
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        .page-id-6279 blockquote.nectar_single_testimonial {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Gianluca replied

    Thanks, it worked!