Okay
  Public Ticket #2569310
Off Canvas menu issues
Closed

Comments

  •  16
    Jen started the conversation

    Hi I am trying to have a simpler menu for my off canvas menu than the tricky menu I have for my main navigation.

    I have implemented the widget menu and have turned of the mobile menu option in off canvas menu in salient but I have 2 issues.

    At mobile size the main menu is also still showing so I now have 2 visible menus

    The menu I have created in widget version is not centred.


  •  16
    Jen replied

    The top menu that is showing looks good but its too complex for mobile view. the second set of words ( from HOME down) is the menu I need visible and it is not centred


  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        #slide-out-widget-area .mobile-only {
            display: none !important;
        }
        #slide-out-widget-area.fullscreen .inner .widget, #slide-out-widget-area.fullscreen-alt .inner .widget {
            padding: 0 !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  16
    Jen replied

    THANKYOU this is awesome x