Hello,
I have the problem with your template Ultimate. I can turn on slider of course. But when I turn on slider, it display for mobile phones, desktops and tablets. But I want to display my slider ONLY ON MOBILE DEVICES (not slider for desktop and tablets)? How can I do it? Can i get code css for this changing? because i think I can edit this option slider in css box theme, right?
Hi lukasz9689,
Go to Appearance -> Customize -> Design options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel.
.featured-slider {
display: none;
}
@media only screen and (max-width: 767px){
.featured-slider {
display: block;
}
}
Hello,
Thank you very much for reply. I paste this code but its not working correctly. Slider display on desktop version but in mobile version not. Slider on mobile version not working. Why? I want to that slider will display ONLY IN MOBILE DEVICES, NOT IN DESKTOP(PC).