Hidding shortcodes Ultimate's Pullquotes on mobile devices
-
Hello everybody
I’m new to the wordpress universe and I have been looking to the solution to my problem for a while without success. Here is my question : I have added nice pull quotes on different pages of a website using the Shortcodes Ultimate plugin. It looks nice on desktop screens but looks like s**t on mobile devices. The pull quotes using 30% of the width, on a mobile device, it streches the pull quotes too much making it uneasy to read.
I would like to hide the pull quotes only on mobile devices. I tried to use media queries in the box-shortcodes.css style sheet I found in wp-content/plugins/shortcodes-ultimate/assets/css.
Here is what I wrote above the .su-pullquote class:@media screen and (min-width: 680px) {
.su-pullquote {
display: block;}
}
@media screen and (max-width: 680px) {
.su-pullquote {
display: none;}
}But it doesn’t seem to work as the pull quotes are still visible on my i-phone.
Can someone give me some help with that please.
Regards
- The topic ‘Hidding shortcodes Ultimate's Pullquotes on mobile devices’ is closed to new replies.