Hi, On a mobile I am trying to override this layout.css rule so that only the logo is clickable on a mobile and not the 80%
.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
It works when I delete the “width:80%” in the browser CSS editor (see image).
However in the quick CSS I have added
.responsive #top .logo {width:20% !important}
But this is not being recognised. Not sure what I am doing wrong in the css
What stupid thing am I doing wrong.
Hey Denis!
You’re missing a ; the statement you’re adding to Quick CSS, try this instead:
.responsive #top .logo {width:20% !important;}
Best regards,
Rikard
Thanks, That seems to have worked not sure why. Denis