• Resolved tersoal

    (@tersoal)


    Hi.

    I’m using customizr and it’s awesome!

    One question. I’ll like to show an image instead a slider in the home page, or perhaps a hero unit, just like the theme website:

    http://www.themesandco.com

    How can I make it? There is no option in the customize section, and I’ll prefer not to edit the theme loyout.

    Thanks in advance.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Use the slider feature but only add a single slide. You can remove the previous/next arrows with CSS.

    Thread Starter tersoal

    (@tersoal)

    Yes, it´s an option. I was worry about arrows in the slide.

    I will try.

    Thank you so much!

    I used this css for the arrows:

    /* remove previous/next arrows */
    .carousel-control {
    display:none ;
    }

    Thread Starter tersoal

    (@tersoal)

    Thank you.

    But this affects to all carousels, and I need affect only to home slide, because I want to put carousel in other pages.

    I’m working in that.

    Hi right you are

    /* remove previous/next arrows from home page only */
    .home .carousel-control {
    display:none ;
    }

    Thread Starter tersoal

    (@tersoal)

    Perfect!

    This is what I wanted.

    In addition, I have move the caption to bottom and right for show the autor of the image, and I have delete background.

    .home .carousel-caption {
    background: none;
    vertical-align: bottom;
    left: 40%;
    padding: 0;
    }

    If you want simply to delete caption:

    .home .carousel-caption {
    display:none ;
    }

    I like this community 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Image instead slide’ is closed to new replies.