Removing Tap Targets on the Slides

Discussion in 'Andrina WordPress Theme' started by yedwab, Mar 21, 2015.

  1. yedwab

    yedwab New Member

    Joined:
    Jun 25, 2012
    Messages:
    26
    Likes Received:
    0
    Andrina theme puts up small dots on the lower left of the slides that allows the user to click to the next slide. (see attached photo). Is there a way for me to not have the dots appear?

    Thanks,

    Laura
    www.kineticinquiry.com
     

    Attached Files:

  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Laura!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    ul.pagination {
      display: none;
    }
    Thanks,
    Praveen
     
  3. yedwab

    yedwab New Member

    Joined:
    Jun 25, 2012
    Messages:
    26
    Likes Received:
    0
    That works when I add it to the styles.css file. However, it does not work when I add it to the Theme Options->Styling Options. I would rather not have to update the style.css file directly. I tried adding !important but that didn't help.

    What I really want to do is have the pagination display on the desktop but not on the phone. How would I do that?

    Thanks,

    Laura
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello Laura!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    div#slides ul.pagination {
      display: none !important;
    }
    }
    @media only screen and (max-width: 960px) and (min-width: 767px){
    div#slides ul.pagination {
      display: none !important;
    }
    }
    Thanks,
    Praveen
     

Share This Page