Okay
  Public Ticket #2338679
Mobile responsiveness
Closed

Comments

  • Paul Müller started the conversation

    Hello,

    I created a design including a hover effect on desktop. So once hovering over the boxes the headline goes up and then the subtitle is shown. On mobile devices this is buggy as in attached video. I couldn't find the possibility to deactivate this on mobile.

    Could you help me out with this?

    Best
    Paul

  •  8,992
    Tahir replied

    Hey,

    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: 1025px) {
        .nectar-fancy-box[data-style="hover_desc"] .hover-content {
            opacity: 1 !important;
            position: relative !important;
            transform: translateY(0px) !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • Paul Müller replied

    amazing, thanks so much for the help! It worked.