Site logo

Archived topic

Child theme enqueue mobile style

1 reply · Started by Jean Paiva on March 15, 2015

Viewing posts 1–2 of 2

Hey Tom,

how is the best way to enqueue the mobile max screen width into a child theme?

Thank you

You can simply add your CSS inside a media query like this:

@media screen and (max-width: 768px) {
      /* mobile CSS in here */
}

If you want to enqueue a file just for mobile, take a look in 1.2.9's functions.php file for the enqueue code for the mobile stylesheet - you'll see the media query in there.

This archived topic is closed to new replies.