Homepage static image

Discussion in 'Infoway WordPress Theme' started by bikelivingston, Apr 2, 2013.

  1. bikelivingston

    bikelivingston New Member

    Joined:
    Apr 2, 2013
    Messages:
    6
    Likes Received:
    0
    I do not want the Slider on the homepage. I just want a static image with no header or description. How can i do that?
     
  2. bikelivingston

    bikelivingston New Member

    Joined:
    Apr 2, 2013
    Messages:
    6
    Likes Received:
    0
    i worked around it by only putting in one image, deleteing the time and adding in some code,
    .ui-tabs-nav {
    display: none;
    }

    Is this the best way to do that?
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Yes that will worked perfectly for the desktop screen but in the mobile view there will be some white space underneath the slider image.
    To remove that extra space you have to add the code given below in the Custom CSS (Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard .
    Code:
    @media only screen and (max-width: 480px){
    #featured {
    height: 101px;
    }}
    @media only screen and (max-width: 767px) and (min-width: 480px){
    #featured {
    height: 101px;
    }}
    This will Solve your issue.
     
  4. bikelivingston

    bikelivingston New Member

    Joined:
    Apr 2, 2013
    Messages:
    6
    Likes Received:
    0
    thank you
     

Share This Page