Margin-Top for Mobile only
Jimyape created the topic: Margin-Top for Mobile only
Dear Guys,
I really like your slider and it does its Job perfectly.
Only for my mobile appearance I Need the slider to have a slightly gap from the top.
I tried to achieve this with the following css:
media screen and (max-width: 768px) {
margin-top: 20px;
}
But this doesnt work for me. I guess its because normally I Need a ".xxx" Name which should be adjusted for mobile, but I dont know the Name of your plugin to use here.
media screen and (max-width: 768px) {
".xxx" {margin-top: 20px}
}
Hope you can help me, thanks in advance
Jimy
Please Log in or Create an account to join the conversation.
6 years 2 months ago
Sona N. replied the topic: Margin-Top for Mobile only
Dear Jimy,
Thanks for contacting us. Actually you can use the following code:
@media screen and (max-width: 768px) {
div[id^="wds_container1_"] {margin-top: 20px;}
}
It should do the trick. Thanks!
Please Log in or Create an account to join the conversation.
6 years 2 months ago