Tagged: array, grid row, mobile, smartphone
-
AuthorPosts
-
October 18, 2016 at 12:07 am #700319
Hey Kriesi Team,
ich würde gerne wissen, ob es eine Möglichkeit gibt, die Grid Row Anordnung auf einem Handy anders zu definieren, als auf dem Computer?
Bedeutet:
Ich erstelle zwei Grid Rows mit je 2 Spalten.
In der Resten Gridrow, habe ichA) BILD — B)TEXT
in der zweiten
B)TEXT — A)BILD
Auf dem PC Sieht das Top aus.
Auf dem Handy allerdings, habe ich dann Bild, Text, Text, Bild.Kann ich diese Anordnung so ändern, das ich nur auf dem Handy folgendes habe:
Bild, Text, Bild, Text?
Link der Webseite ist im Anhang.
Hoffe da gibt es eine Möglichkeit für.
Danke im Voraus.
October 18, 2016 at 6:29 am #700380Hi MaktubJolie!
Yes, it’s possible. Here is the concept of the fix: duplicate/clone 2nd,4th row and so on or those that have text-image arrangement and have the clone be in text-image arrangement, the original will be shown on desktop and hidden on mobile while the 2nd row will be hidden on desktop and shown in mobile. In order for you to do so, you need to do the following:
Go to Appearance > Editor and open functions.php and find this code:
// add_theme_support('avia_template_builder_custom_css');
and replace it with
add_theme_support('avia_template_builder_custom_css');
then save it.Go to the page with gridrows you want to arrange on mobile and duplicate the even rows (2nd,4th, so on)
Edit the original Grid Row and at the bottom you should see Custom Css Class add this in it: hide-mobile and Save
Edit the cloned Grid Row and in the Custom Css Class add: hide-desktop then Save and Update
Go to Enfold Theme Options > General Styling > Quick CSS and add this code:
.hide-desktop{ display: none; } @media only screen and (max-width:767px) { .hide-desktop{ display: block; } .hide-mobile { display: none; } }
and Save
Hope this helps. :)
Regards,
Nikko- This reply was modified 8 years, 1 month ago by Nikko. Reason: formatting
October 18, 2016 at 9:54 am #700518You Sir, are a genius.
It worked extremely good with the first try!
Thank you very, very much!
Thumbs Up and keep up the good work!
Appreciate that!- This reply was modified 8 years, 1 month ago by MaktubJolie.
October 18, 2016 at 10:24 am #700542Hi MaktubJolie ,
Glad that I could help :)
Best regards,
Nikko Ayag -
AuthorPosts
- The topic ‘Grid Row Anordnung und Priorität auf Handys’ is closed to new replies.