• Resolved Wootie

    (@wootie)


    Hi there, me again…

    Was wondering if there is a way to completely remove the left/right buttons that appear on either side of the slider on the home page. Not a big deal really normally, but I’ve noticed that they always appear on mobile devices…which seems kind of annoying.

    Or maybe if there’s just a way to disable them on mobile.

Viewing 9 replies - 1 through 9 (of 9 total)
  • What is the url to your site?

    Thread Starter Wootie

    (@wootie)

    Tim Nash

    (@tnash)

    Spam hunter

    Hi Wootie, just be aware your posts were held in moderation it happens from time to time and is nothing to worry about. If your post doesn’t immediately appear and no error message is given, this is likely to be the case, please don’t then try sending the post again. Unfortunately sending multiple versions of the same post is a flag to the system and you may find yourself in moderation even more often.

    Hope you get your problem fixed.

    Wootie,

    Add this CSS codes to your theme options custom css area or your child theme.

    .flex-direction-nav .flex-prev {
        display: none;
        left: -35px;
    }
    
    .flex-direction-nav .flex-next {
        background-position: 100% 0;
        display: none;
        right: -35px;
    }

    Good luck with the site.

    Hey,
    You can also just hide for mobile using this css:

    @media (max-width: 767px) {
        .flex-direction-nav {
        display: none;
    }
    }

    Kadence Themes

    Thread Starter Wootie

    (@wootie)

    I tried both of those…it seemed that the one from Kadence didn’t do anything, as I still got the arrows on the mobile device…then I tried what 1-jah suggested, and it did indeed get rid of them on the website…but they still appear on mobile. Even after clearing the cache in my Firefox mobile.

    I still have the 1-jah code in there…can anyone else confirm?

    Hey,
    Looks like your using a cacheing plugin. After you added the css did you clear your cache in the plugin?

    Are you adding the css in your theme options > advanced settings > custom css box.

    Kadence Themes

    Thread Starter Wootie

    (@wootie)

    Yeah – emptied all caches, and put the CSS in the CSS box.

    Thread Starter Wootie

    (@wootie)

    Uh, for giggles I went and tried it again on my phone and it worked. Not sure what the deal was…but apparently the issue is fixed. Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Remove left/right buttons on slider?’ is closed to new replies.