replacing the slider with simple image slider

Discussion in 'Figero WordPress Theme' started by ddvvns, May 28, 2013.

  1. ddvvns

    ddvvns New Member

    Joined:
    Oct 5, 2012
    Messages:
    4
    Likes Received:
    0
    I need remove the text from the slider and only use images there, how can this be done?
    Also, can the number of items in the slider be increased to say 8 images?

    Thank you,

    Val Saidor
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .slide .entry{
    display:none;
    }
    .slide .images img {
    width:100%;
    }
    .slide .images{
    margin-left:10px;
    }
     
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .slide .images img {
    width:80%;
    }
    }
    @media only screen and (max-width: 767px){
    .slide .images img {
    width:400px;
    margin-right: 348px;
    }
    }
    @media only screen and (max-width: 480px) {
    .slide .images img {
    width:200px;
    }
    .slide .images {
    margin-left: 35px;
    }
    }
    2.
    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
     

Share This Page