I would like to use a custom background on desktop browsers but disable it on small devices less than600px? I have tried media queries without any luck. WP 3.5 with Twenty Twelve theme.
I would like to use a custom background on desktop browsers but disable it on small devices less than600px? I have tried media queries without any luck. WP 3.5 with Twenty Twelve theme.
please use a child theme or a custom css plugin for the css edits;
http://codex.wordpress.org/Child_Themes
http://wordpress.org/extend/plugins/search.php?q=custom+css
add the background image css for instance into a @media query like:
@media screen and (min-width: 960px) {
.whatever { background: ..; }
}
or hide a background with a @media query like:
@media screen and (max-width: 960px) {
.whatever { background: none; }
}
adjust the numbers
Thanx Al.... That worked, yes, I am using my child theme.
You must log in to post.