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?
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?
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.