-
AuthorPosts
-
February 26, 2022 at 2:50 am #1342348
Hey.
1. Frage: In der mobilen Version meiner Seite erscheinen oberhalb der Absätze leere Felder. Ich weiß, die Felder sind die Layoutelemente, die ich zur Aufteilung der Seite verwende und dann mit Inhalt befüllt habe — in der Webversion sieht das aus wie beabsichtigt, in der mobilen Version sieht man sie als leeres Feld oberhalb des Inhalts. Wie unterbinde ich diese Darstellung in der mobilen Version?
2. Ich möchte einen Nach-oben-Button integrieren, der unten rechts erscheint sowie man anfängt nach unten zu scrollen, und der einen wieder ans obere Ende bringt (wie hier im Forum, Standard). Alle früheren Fragen diesbezüglich hier schicken einen an eine Stelle in den Theme Optionen, die es bei mir nicht gibt bzw die vielleicht auch komplett anders heißen. Zum aktuellen Enfold: Wo muss ich was tun?
Ich verstehe Antworten auch auf Englisch, ich frage hier auf Deutsch, weil mein Enfold in den Optionen etc. ein völlig wirrer Mix aus Deutsch und Englisch ist und ich daher nicht mehr nachvollziehen kann, worauf sich welche Tipps beziehen. Auf Deutsch kann ich das konkreter formulieren.
Danke!
Rike
Edit: Warum sind Optionen etc. von Enfold eigentlich überhaupt so willkürlich gemixt auf Englisch und Deutsch? mEA macht das ein ansonsten sehr gutes Theme sehr umständlich für die Umsetzung von Seiten.
February 26, 2022 at 9:11 pm #1342419Hey UFreeman,
1. Question: In the mobile version of my site, empty fields appear above the paragraphs. I know the fields are the layout elements that I use to break up the page and then populate it with content — on the web version it looks as intended, on the mobile version you can see it as an empty field above the content. How do I stop this display in the mobile version?
I believe that you want to hide three empty white boxes on your page for mobile, please see the screenshot in the Private Content area. These seem to be custom div’s in text block elements and all have the same ID so adding this css to your Quick CSS in the theme option will hide them all on mobile:
@media only screen and (max-width: 767px) { #simple-translate { display: none; } }
After applying the css, please clear your browser cache and check.
2. I want to include an up button that appears in the bottom right corner as you start scrolling down and brings you back to the top (like here in the forum, default). All earlier questions about this here send you to a place in the theme options that doesn’t exist for me or that maybe have a completely different name.
To show the “scroll to the top” button on mobile add this css to your Quick CSS in the theme option
@media only screen and (max-width: 767px) { .responsive #top #scroll-top-link { display: block; } }
again after applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 2, 2022 at 3:22 pm #1342862Thank you @Mike — both worked exactly as asked for!
Might need the back-to-top-button for the browser version too, but I can work that out from your CSS for mobile.
March 2, 2022 at 4:04 pm #1342868Hi,
Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardMarch 5, 2022 at 6:54 pm #1343277Hey,
I do have another question:
Can I place an additional social media site within the icons and use a custom-made icon for it? What would I select in the dropdown menu, and how would I replace that icon? For now, I added the link and used the rss-feed-icon.
Best regards,
RikeMarch 5, 2022 at 7:45 pm #1343285Hi,
There are two ways to do this, the first is outlined in our documentation here: How to add Custom Social Icons to Enfold options
Or if you are going to use an image you caan replace the rss-feed-icon with this css in your Quick CSS:.social_bookmarks_rss a:before{ content: ""; width: 20px; height: 20px; display: inline-block; vertical-align: middle; background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png) no-repeat center center; background-size: contain; }
just adjust the image to suit and clear your browser cache.
Best regards,
MikeMarch 10, 2022 at 3:11 am #1343933@Mike Thank you, I replaced the RSS-Feed-Icon, worked well.
March 10, 2022 at 3:31 am #1343936Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘Nach oben Button integrieren und leere Felder in Mobiler Version entfernen?’ is closed to new replies.