I had used CSS to make sure the logo at: http://www.firstmadison.com wasn’t too large in 480px responsive mode, but with the new update I can’t seem to get it to work :-(. I want to do: max-width: 200px; at 480px or less. Any ideas? Thanks!! Mike.
Hey mhiller!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 480px) {
.logo img { max-width: 200px!important; }}
Regards,
Yigit
Thanks! I had this in there:
@media only screen and (max-width: 480px) {
.logo a { max-width: 200px!important; }}
Now I see what was wrong. I really appreciate the help!! Mike.