Tagged: x
-
AuthorPosts
-
January 20, 2017 at 4:24 am #1338160
Catherine RParticipanthi,
I would like to disable the rev slider and replace it with one singular image for mobile devices.I can figure out how to disable the slider on mobile devices, but when I add this CSS, I still see the image on my desktop. What am I doing wrong?
@media only screen and (max-width : 767px) {
.thisisthenameofmyclass {
display: none;
}
}I tried adding thisisthenameofmyclass to the class section of the container as well as the image, but neither work.
thank you for your advice!
January 20, 2017 at 7:37 am #1338315
JoaoModeratorThanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
January 26, 2017 at 3:53 am #1346086
Catherine RParticipantThis reply has been marked as private.January 26, 2017 at 4:30 am #1346137
LelyModeratorHi Catherine,
What that CSS means is the opposite of what you want to achieve. You’re hiding the the image on smaller screen size instead. When I checked, you first content band where you add the class doesn’t have content.
Should be like this:
@media (min-width : 768px) { /*This means the content will be hidden when starting 768 and up*/ .thisisthenameofmyclass { display: none; } }Hope this helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1338160 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
