Resize Slider Images

Discussion in 'ColorWay WordPress Theme' started by purepix, Sep 16, 2013.

  1. purepix

    purepix New Member

    Joined:
    Oct 8, 2012
    Messages:
    10
    Likes Received:
    0
    How can I make the slider images bigger. The width is fine, I just want to make them a bit higher.
    I've tried adding the following in Custom CSS but it doesn't work. What am I doing wrong? Is it possible to change the height?

    .slide .images img{
    width:960px;
    height:640px;

    Thanks
    url : www.yourweddingimages.co.uk
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

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

    Code:
    .slider-container {
    height: 640px;
    }
    .slide-img {
    width: 897px;
    height: 640px;
    }
    Do not increase width. It will cut slider image.
     
  3. purepix

    purepix New Member

    Joined:
    Oct 8, 2012
    Messages:
    10
    Likes Received:
    0
    Hi Nitesh,
    I've added that code to Custom CSS but the images are still just 445 px high.
    Thanks
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Please check your site.

    Code worked at your site is given below.
    Code:
    .slider-container {
    height: 640px!important;
    }
    .slide-img {
    width: 897px;
    height: 640px!important;
    }
    .slides_control {
    min-height: 598px[FONT=Consolas]!important;[/FONT]
    }
    
     

Share This Page