Can I remove navigation indicator from slider?

  • rpallen

    #10756

    I’m using Franz Josef theme.

    I’ve changed the height of the slider from 500 to 300. This causes the dots at the bottom which show which slide is current to sometimes be in the “View Post” botton. Is it possible to remove these dots?

    rpallen

    #46698

    RESOLVED

    Nevermind. After doing some research on the internet, I figured out how to do this.

    I added “display: none;” in the code block below. (The block is WITH my added line.)

    .carousel-indicators li {

    border-width: 2px;

    margin: 1px 4px;

    display: none;

    }

    Admin

    Syahir Hakim

    #46699

    You could just add this code to the theme’s Custom CSS option to achieve the same effect:

    .carousel-indicators li {
    display: none;
    }

    This way, your change won’t be lost when the theme is updated.

Viewing 3 posts - 1 through 3 (of 3 total)

  • You must be logged in to reply to this topic.