Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #630940

    Hi there,

    a lot of themes and theme frameworks have a cool responsive feature that I would like to use with enfold. A responsive utility that gives you the ability to hide or show elements on the page responsively for different device sizes. To be used for showing and hiding content by device.
    Is something like that possible with Enfold? Or is there a plugin for that or even better: are you planning this feature in the future?

    Gr Eric

    #630942

    Hi station1!

    You can create classes, to enfold Custom CSS and use them at enfold, with Enfold Custom Class area at ALB
    It is the same thing that those frameworks also do.

    Example:

    
    @media screen and (min-width: 0px) and (max-width: 400px) {
      #my-content { display: block; }  /* show it on small screens */
    }
    
    @media screen and (min-width: 401px) and (max-width: 1024px) {
      #my-content { display: none; }   /* hide it elsewhere */
    }

    let us know if those info are enough for you or you need something else.

    Thanks a lot

    Best regards,
    Basilis

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