Home page Header Size Cutting Slider Image Off

Discussion in 'StartPoint Business One Page WordPress Theme' started by breatherec, Mar 4, 2014.

Thread Status:
Not open for further replies.
  1. breatherec

    breatherec New Member

    Joined:
    Mar 4, 2014
    Messages:
    14
    Likes Received:
    0
    How can i stop my home page header reducing the size of my slider images?

    At present i am using text only on the header till i can line the rest of the site up however with my slider images on set to the right size, it is cutting the top of my slider image off.

    Any Help?

    Cheers
     
  2. breatherec

    breatherec New Member

    Joined:
    Mar 4, 2014
    Messages:
    14
    Likes Received:
    0
  3. Gourav

    Gourav Support Staff

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

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     .flexslider .slides img{
    margin-top:110px;
    }
    @media (min-width: 768px) and (max-width: 991px) {
    .flexslider .slides img{
    margin-top:0px;
    }
    }
     
    @media (min-width: 480px) and (max-width: 767px) {
    .flexslider .slides img{
    margin-top:0px;
    }
    }
     
    @media (min-width: 300px) and (max-width: 479px) {
    .flexslider .slides img{
    margin-top:0px;
    }
    }
    
    Adjust its value as per your requirements.

    Thanks & Regards
    Gourav Shrivastava
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. breatherec

    breatherec New Member

    Joined:
    Mar 4, 2014
    Messages:
    14
    Likes Received:
    0
    Thanks yes it is sorted. ;)
     
Thread Status:
Not open for further replies.

Share This Page