Okay
  Public Ticket #979068
Hide dot navigation on mobile?
Closed

Comments

  •  6
    Benjamin started the conversation

    How do I hide dot navigation on tablet/mobile via CSS in Full Page Rows?

  •  8,996
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    /* Hide fullscreen Page Rows Navigation Dots on Mobile  */
    @media only screen and (max-width: 690px) {
        div#fp-nav {
            display:none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  6
    Benjamin replied

    I bumped it up to 1024px, but that did it.  Thanks.