Eliminate the margin of an image on mobile
-
hi, i have been trying to use your plugin, but i can not get it work.
i tray to delete the margin of an image on mobile and add it on desktop but doesn’t work for me. Hope you can help me.This is the original code for mobile
.adsng-cover img { margin-left: -30px; margin-bottom: 40px; width: 310px; height: 310px; }
basically i want to put 0 on desktop but i dont know wre does it goes the function. BTW im working on the style.css i made this but doesn’t work:
<?php if (is_mobile()) { .adsng-cover img { margin-left: -30px; margin-bottom: 40px; width: 310px; height: 310px; }} ?> <?php if (!is_mobile()) { .adsng-cover img { margin-left: 0px; margin-bottom: 40px; width: 310px; height: 310px; }} ?>
and this but doesn’t work either:
.adsng-cover img { <?php if (is_mobile()) { margin-left: -30px; margin-bottom: 40px; width: 310px; height: 310px; } ?> <?php if (!is_mobile()) { margin-left: 0px; margin-bottom: 40px; width: 310px; height: 310px; } ?> }
BTW this is the web page.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Eliminate the margin of an image on mobile’ is closed to new replies.