PenciDesign replied
Hi,
Yeah, you can use Custom CSS media queries for tablet like this:
\
@media only screen and (max-width: 960px) and (min-width: 481px){\
/** Your Custom CSS put here **/\
}and for mobile only, use:
\
@media only screen and (max-width: 480px) {\
/** Your Custom CSS put here **/\
}Best Regards,
PenciDesign
\