I just put this site live today, and the client’s stoked.
Unfortunately, when it crunches down to mobile, there are some issues.
1) how can I get a white background for the mobile menu items?
2) How can I hide various items? “@media query”?!? This is new for me.
3) How can I shrink the logo
Thanks for everything!!!
p.s. Yikes! I just saw this in Firefox Developer Version for the first time, and the desktop site is broken! Any suggestions?
Hey launchmoxie!
1. Add this to your custom CSS.
#mobile-advanced li { background: white !important; }
2. If you open up the /enfold/css/custom.css you can see where to add the mobile css on line 25.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
}
You would play around with the 767 value to change what screen sizes it get’s applied to.
3. Add this to your custom CSS.
.responsive .logo img { max-height: 40px !important; }
Cheers!
Elliott
(disregard this last message…)
So, I got things working, thanks.
Question: is the /enfold/css/custom.css able to be overridden in a child theme folder?