Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #338148

    10-20
    Bottom Menu-Socket-Mobile (?)

    Hi,
    Can I keep the bottom menu on mobile?
    I can make something but that would be easy.
    Thanks,
    Stephen

    #338653

    Hi stepheng!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 479px) {
    .responsive #socket .sub_menu_socket {
    display: block;
    }}

    Cheers!
    Yigit

    #338687

    Thanks.

    Why do you do double brackets at the end of your code? I’ve never scene that before.

    Stephen

    • This reply was modified 9 years, 6 months ago by stepheng.
    #338691

    Hi!

    Because i used media queries to target screens smaller than 479px. Example code would be

    @media only screen and (max-width: 479px) {
    /* your code goes here */
    body { font-size: 14px; }
    }

    Regards,
    Yigit

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