Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #716620

    Hi! I have hidden the mobile menu, and want Facebook icon (only shown social media icon) to be displayed to the right side of the logo.

    Also I have enlarged the social media icon for desktop, so what is the code for shrinking it/enlarging it so it will fit for mobile?

    #716621

    Now i noticed that the following code for removing the menu at mobil that I was using did remove the Facebook logo displayed in the menu.
    How can I hide the menu at mobile, but still have the social media icon visible (As in my original post, i want to replace the placement of mobile menu with facebook icon)

    following code I used to hide menu:
    nav.main_menu, #advanced_menu_toggle {
    display: none !important;
    }
    */ fjerne menyen på mobil */

    #717787

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #advanced_menu_toggle {
        display: none!important;
    }
    @media only screen and (max-width: 480px) {
    .responsive.html_header_top #header_main .social_bookmarks {
        display: block!important;
        right: 0;
    }}
    

    Best regards,
    Yigit

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