Reply To: Top Menu Align Right

Homepage Community Forums Epik Theme Support Top Menu Align Right Reply To: Top Menu Align Right

#10793
Wes
Moderator

    Here is one way to do it if you want an icon to display the dropdown – http://bit.ly/Ob2bQ7

    Here is another way if you want a dropdown to appear instead of the icon – http://bit.ly/1nOqRbp

    The white background color isn’t coming from the theme, it looks like you’re using a plugin or something to add the menu? I can see that the code is coming from this – http://test.melodypods.com/wp-content/plugins/gallery-bank/assets/css/bootstrap.css …..Which shows this css on line 906 of that css file –

    .nav-header {
    display: block;
    padding: 6px 15px 5px 15px;
    font-size: 11px;
    font-weight: bold;
    line-height: 20px;
    color: #777;
    text-transform: uppercase;
    background: #FAFAFA;
    border-bottom: 1px solid #e5e5e5;
    }

    So either remove it from there, or override it by adding the following code inside the theme’s style.css file so it won’t show the plugin’s css –

    
    .nav-header {
        background: none;
        border: none;
    }