Mr Lucky
Well-known member
I have my forum logos set so the main logo shows on browser widths above 480px (that is the setting for narrow responsive)
Narrower than that that a smaller logo shows instead:
This all seems to work fine, testing on various mobiles (and Firefox responsive tool)
Except on safari iPhone 6 plus - both logos are showing together.
Can anyone explain why this might be happening?
Thanks.
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth) {
#logo {
display: none;
}
}
</xen:if>
Narrower than that that a smaller logo shows instead:
Code:
.mobilelogo
{display:none}
@media only screen and (max-device-width:480px)
{.mobilelogo
{display:initial;max-width:100%;height:auto;}
}
This all seems to work fine, testing on various mobiles (and Firefox responsive tool)
Except on safari iPhone 6 plus - both logos are showing together.
Can anyone explain why this might be happening?
Thanks.