• Resolved raihsii

    (@raihsii)


    How to remove bootstrap button from cover page in evolve theme?
    I will have only one slide in the front page and I want to remove the
    “< >” button from the page. How can I do it?

    Br
    raihsii

Viewing 7 replies - 1 through 7 (of 7 total)
  • rubyannrsls

    (@rubyannrsls)

    Try adding display: none; on its elements ??

    Thread Starter raihsii

    (@raihsii)

    Thank you,
    but do you find the element name?
    Br raihsii

    Thread Starter raihsii

    (@raihsii)

    I tried this in evolve chold sytelcss:

    button,
    .bootstrap-button {
    //display: inline-block;
    display: none;
    }

    #bootstrap-slider .carousel-caption .bootstrap-button {
    display: none;
    }

    It did not help. Can anyone help me, please?

    Br
    raihsii

    You can do so by right clicking the portion that you want to target. In your case it’s the < and >. Right click on it then inspect element. There, you can see what element controls it. To hide/remove the button, add this to your style.css

    a.right.carousel-control {
        display: none;
    }

    and

    a.left.carousel-control {
        display: none;
    }
    Thread Starter raihsii

    (@raihsii)

    Thank you very very very much! This did help!

    Pleasure is mine. Cheers!

    Thread Starter raihsii

    (@raihsii)

    Sorry about the lanquish, I speek finnish,
    and I was in a little stress.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to remove bootstrap button from cover page in evolve theme?’ is closed to new replies.