Hi,
i have a part of my website which i want for normal screen and one for mobile. Can you please help me with the code.
Thanks a lot simon
Hey Simon,
Please try the following in Quick CSS:
@media only screen and (min-width: 768px) {
#team {
display:block !important;
}
#full_slider_1 {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
#team {
display:none !important;
}
#full_slider_1 {
display:block !important;
}
}
Cheers!
Rikard
Thank you Rikard, the code worked!
Simon