Topic Resolution: Resolved
  • Closed
  • Greg Vaughan
    Spectator
    September 8, 2015 at 3:26 am #20505

    I’m currently using bootstrap slider to show a single landscape image across the screen of my home page, above the content buttons. Using bootstrap, however, creates left and right navigations buttons, which zoom up the page after a few seconds since there is only one image. I’d like to simplify this layout to have the same look without using bootstrap. When I add an image to the visual editor of the home page,however, it just puts a small version of the image in the lower left corner below the content buttons. How to I have an image span the page above the content buttons?

    http://test.bbblack.com

    Denzel Chia
    Moderator
    Posts: 2656
    September 8, 2015 at 9:52 am #20522

    Hi,

    Sorry, that will require customization. You can hire a developer to do it or contact us for this customization via our services page https://theme4press.com/services/

    Alternatively, you can use the following code in your Theme Options-> Custom CSS to hide the left and right slider control.

    .carousel-control {
    display: none !important;
    }

    Thanks!

    Greg Vaughan
    Spectator
    Posts: 27
    September 8, 2015 at 10:23 am #20523

    Thanks, hiding the bootstrap navigation arrows pretty much gave me the appearance I sought. It just seemed that using bootstrap for a single image was overkill somehow.