Hello. With the help of support, I was able to get a custom header image added. Works great, but I need a little assistance targeting this on mobile. Specifically, I need a little hint as to what CSS to target so I can set up the media queries.
Thank you,
Ryan.
Hi Ryan,
Try this, it should target your header widget for mobile only:
@media only screen and (max-width: 767px) {
#text-5 {
your CSS here
}
}
Regards,
Rikard
Good to go! Appreciate ya.