• Closed
  • Tom Waterfall
    Spectator
    January 26, 2018 at 4:43 pm #36373

    Hi guys, was wondering if I could get your help to solve a couple of issues/make a few changes to the Evolve Theme.

    1. Is there any way to have the expanded hamburger menu in mobile view so that it only shows top level pages initially and will show sub-pages if the user presses on a menu item? There are lots of sub-pages on my site it means when I expand the hamburger the menu is really long.

    2. Is it possible to retain the descriptive text on the bootstrap slider when in tablet/mobile view?

    3. Is it possible to stop the page scrolling when the next/back arrow is clicked on the bootstrap slider? I don’t recall this happening before the latest update.

    Thanks

    Priyank
    Spectator
    Posts: 747
    January 29, 2018 at 11:10 am #36384

    Hii,

    The first one in, Go to theme option

    Theme Option -> Header -> Menu -> Responsive Menu Layout ( Select Clean Dropdown Menu ).

    The second one in, Add Custom CSS on additional CSS area.

    @media (max-width: 450px){
    #bootstrap-slider .carousel-caption p {
    display: block;
    }
    }
    @media (max-width: 540px){
    #bootstrap-slider .carousel-caption p {
    display: block;
    }
    }

    Thank You