Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #694834

    How to hide a color section ID#001 on desktop and show ID#002 in its place, and vice versa for mobile.

    #694844

    Hey domainarchitect,

    To achieve what you are looking for, you can do this by adding ID’s to your Color Sections in the element options and then show/hide them with CSS:

    
    @media only screen and (min-width: 768px) {
    #002 {
    display:block;
    }
    #001 {
    display:none;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #002 {
    display:none;
    }
    #001 {
    display:block;
    }
    }

    Best regards,
    Jordan

    #694861

    Am I doing something wrong? Both appear.

    #694923

    Hi,

    Thanks for getting back to us!

    Would you mind also providing administrator login details to your WordPress site, so that we can have a closer look. You can place the information in the private data section of your reply.

    Please also indicate the color sections that are to be hidden on desktop but shown on mobile and vice versa.

    Best regards,
    Jordan

    #694924

    See my credentials

    #695016

    Hey!

    Please refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    Best regards,
    Yigit

    #695219

    Yigit,
    I don’t really understand. The color sections already have ways to associate an ID to them. I did that and implemented the code the above support staff suggested without results so I provided my credentials when they were requested.

    Why is it now that I am being redirected to another post without any further direction in how to resolve or implement what I am seeking to implement?

    #695224

    Hi!

    We have many useful information on our documentation and i shared the link so you would know how to do it in future if needed :)
    I changed color section ID’s as numbers were not working. It is working now. Please flush browser cache and review your website

    Regards,
    Yigit

    #695249

    Oh, thanks. I had searched and found multiple threads with different information so I wanted to ask.

    Thanks for your prompt help. It might be helpful to start merging topics.

    #695351

    Hi,

    Great, glad you got it working :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

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