Hi,
wir möchten in Shop 4.06 unser Shoplogo auf Desktop und Tablets ganz normal links anzeigen. Unterschreitet die auflösung eine gewisse Breite (Handys), soll das Logo jedoch über die gesamte Breite angezeigt werden und die Suchbox darunter angezeigt werden.
Mit dem Evo Standard funktioniert es einfach nicht gut. Aktuell nutzen wir schon folgende Veränderung aus dem Forum.
wir möchten in Shop 4.06 unser Shoplogo auf Desktop und Tablets ganz normal links anzeigen. Unterschreitet die auflösung eine gewisse Breite (Handys), soll das Logo jedoch über die gesamte Breite angezeigt werden und die Suchbox darunter angezeigt werden.
Mit dem Evo Standard funktioniert es einfach nicht gut. Aktuell nutzen wir schon folgende Veränderung aus dem Forum.
Code:
@media only screen
and (max-width : 520px) and (orientation : landscape)
{#logo a img {
max-height: 50px;
}}
@media only screen
and (max-width : 320px) and (orientation : portrait)
{#logo a img {
max-height: 40px;
}}
@media only screen
and (min-width : 750px)
{#logo a img {
max-height: 90px;
max-width: 400px;
}}
@media only screen
and (min-width : 1200px)
{#logo a img {
max-height: 150px;
max-width: 650px;
}}