[Theme: Catch Box] Responsive css in child-theme unreliable
-
Hi Sakin. Thanks for all of your wonderful work.
I am working with a child-theme of Catch Box and it works great… until the responsive layouts. I am having a problem getting responsive CSS rules in the child theme to work; most of the time it is just ignored.
Examples:
/* THIS WORKS… */
#branding #searchform { display: none; }
#branding .widget-area aside > a {
display: none;
position: absolute;
background: rgba( 17, 17, 17, 0.5 );
left: 40%;
z-index: 10;
padding: 5px;
}/* … but later on THIS DOES NOT WORK ***/
@media (max-device-width: 650px) {
#branding #searchform {
display: block;
}
#branding .widget-area aside > a {
left: 0;
}
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Theme: Catch Box] Responsive css in child-theme unreliable’ is closed to new replies.