-
AuthorPosts
-
May 5, 2017 at 5:05 pm #788519
Hallo Supportteam,
ich benötige bei folgenden Fragen eure Hilfe:1. Logo Mobile
Das Logo wird auf Handys nicht richtig angezeigt (nur halb)2. Anzeige des mittleren Grid
Die Reihenfolge Text – Button – Bild soll auf dem Handy immer gleich bleiben3. Linie Grid Element
Am Rand der Grid Elemente ist immer eine feine Linie, die ich nicht entfernen kann4. Abstände zwischen den Elementen
Den Abstand habe ich jetzt mit einem Whitespace Element gelöst. Es soll aber eigentlich immer ein “leerer” Abstand zwischen den Elementen sein, das man den Hintergrund zwischen den Elementen sieht.Ich glaube das war es. Ich danke euch jetzt schon für eure Unterstützung.
Grüße
MichaelMay 7, 2017 at 9:00 am #789061Hi Michael,
Thank you for using Enfold!
1. Please use this in the Quick CSS section in Enfold > General Styling:
@media only screen and (max-width: 767px) { .logo img { top:0px; } }
2. The grid cells stack on top of each other. So if you would like to keep that sequence, you will have to rearrange the cells.
If you want, you can hide the middle grid for mobile, and create another version right after it, and make that one appear only for mobile.
If you do that, we can use something like this in quick CSS:
/* This will hide the original grid for mobile phones */ @media only screen and (max-width: 767px) { #av-layout-grid-3 { display:none; } } /* This will hide the new mobile-only version for ipads and laptops */ @media only screen and (min-width: 768px) { #av-layout-grid-4 { display:none; } }
For #3 and #4, we’ll need to take a closer look at your page through your Dashboard. May we have access, please?
Best regards,
SarahMay 8, 2017 at 12:11 pm #789471Hello Sarah,
Problem 1 & 2 is solved. Thank you. Here is the Login to the Website.Best regards,
MichaelMay 8, 2017 at 5:26 pm #789726Hi,
3.) Use this code:
.main_color { border: none; }
4.) This won’t be easily possible, but you could work with Color Sections, where you implement the color of your background.
Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.