Greetings,
I added this code to center my logo on my website.
div .logo { left: 40%; }
The problem is on tablet when its held vertically the logo overlaps the menu. How would I resolve this?
Hey rlapeyre,
Add this to quick css:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
div .logo {
left: 30%;
}}
Best regards,
Jordan Shannon
Thanks for the reply,
The logo still overlaps the menu when the ipad is vertical.
