Team,
Since upgrading my iPhone to IOS 9, the company logo, which was previously centered on mobile displays, now is so far left it runs off the screen.
See two screen shots: the correct one taken from IOS 8 and the incorrect one taken from IOS 9.
Can you please provide a fix? The logo needs to be centered on mobile displays.
Thanks
Hey entrepreneur41!
you are using this code:
@media screen and (max-width: 767px) {
.logo {
left: 8% !important;
}}
adjust it to something like this:
@media screen and (max-width: 767px) {
.logo {
left: 50% !important;
}}
Best regards,
Andy