Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #649759

    If you click on the link on the private content you see on the left side the program of the morning and on the right the one of the afternoon.

    So if I check it with the phone is shows the first part of the left side then the first on the right.

    But I want it to show the left part first and then the content of the right part.

    Thanks in advance

    #650820

    Hey,

    1. Enable custom classes for ALB elements.
    2. Create a new Text Block after the Image element and fill it with the contents of the two Text Blocks.
    3. Set a class of only-desktop to the two columns preceeding the image.
    4. Set a class of only-mobile to the new Text Block you created in 2.
    5. Add this to Quick CSS:

    @media only screen and (min-width: 767px) {
      .only-mobile {
        display: none; }
    
      .only-desktop {
        display: block; } }
    .only-mobile {
      display: block; }
    
    .only-desktop {
      display: none; }
    

    Best regards,
    Josue

    #653716

    I think there is a misunderstanding.

    In the mobile menu or when you decrease the window size it should show me all the content of the right side of the grid Row first and then the content of the right side.

    Thanks in advance for your help.

    Best regards,

    Fabian

    #654951

    Hi,

    Please add reversed version of the elements to your page as well and choose to hide reversed ones on desktop and show on mobile, and hide current elements on mobile and display on desktop, by referring to Josue’s post above.

    Best regards,
    Yigit

    #679290

    Where can I add ALB elements?

    I only have the option to hide on mobilemenu.but not desktop.

    The quick css should I add it in the grid row?

    Thanks for your help in advance.

    Best regards,

    Fabian

    #681507

    Hi,

    The idea is to have two versions of the section, displaying the first one on desktop while hiding the other to be displayed on mobile, vice versa. You can add the css code in the Quick CSS field.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.