Okay
  Public Ticket #3432504
secondary navigation BELOW header
Closed

Comments

  •  1
    jdudan started the conversation

    Hello-

    Is it possible to have the secondary navigation bar show up BELOW the header, and not above the header, for desktop and mobile?

    Thanks!

  •  1
    jdudan replied

    Or as an alternative, have a custom color behind the main navigation?  See screenshot....

    Attached files:  Screenshot-2023-08-08-at-9.42.51-AM.png

  •  8,839
    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):

    body[data-slide-out-widget-area-style=fullscreen-alt] #header-outer {
        background: rgb(2,0,36);
        background: linear-gradient(0deg, #cccccc  0%, #cccccc 30%, rgb(255 255 255) 30%, rgb(255 255 255) 245%) !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2,958
    Andrew replied

    Hello there,

    Thank you for reaching out to us.

    Unfortunately, adding the header below the secondary menu is currently not possible with the theme as this would require extensive customization which I'm afraid we cannot offer due to support scope limitations. 

    However, we are partnered with a trusted provider of expert-level Salient customization. If you are interested in initiating a project, we recommend referring to our guide at the following link: https://themenectar.com/salient/customization/

    Best Regards,

  •  1
    jdudan replied

    Thanks Tahir & Andrew-

    I understand the complexity of customizing the placement of the secondary menu, Tahir's option work just fine for our needs.  We can add some padding to the bottom of the image logo and it should turn out fine.

    However, this colored ban now shows on mobile.  Can we hide this color (or change it to white) for the two mobile breakpoints?  See screenshot.....

    Thanks!

    Attached files:  Screenshot 2023-08-08 at 11.13.52 AM.png

  •  1
    jdudan replied

    And sorry to be picky but it's my job.....can we customize the padding in pixels above/below the navigation since we now have the colored background?

    Attached files:  Screenshot 2023-08-08 at 11.19.09 AM.png

  •  2,958
    Andrew replied

    Hello there,

    Thank you for getting back to us.

    I can't seem to replicate this error from our end. Here's a screenshot of the same.

    7500947630.png

    What device and browser are you using when you experience this issue?

    We look forward to your feedback.

    Kind regards,

  •  1
    jdudan replied

    Andrew-

    I checked on Safari and Chrome, this issue only is happening in Firefox (116.0.2).  I have also fully cleared cache and it is still happening, so FF for Max OS is the culprit.

    Thanks.

  •  1
    jdudan replied

    Not sure if I'm doing the right thing here, but I've been adding transparent space to the logo on the bottom so it will be centered vertically in the white area (you can view the logo image itself to see but it is pulling the "logo-robot.png file for some reason), but it is throwing off the height of the colored background of the main nav row.

    See the live page, I just need the logo to be centered vertically in the white area, and it would be great if I could control the padding of the nav area on the top/bottom per my last screenshot.

    Is this all possible?

    Attached files:  Screenshot 2023-08-08 at 12.08.52 PM.png

  •  2,958
    Andrew replied

    Hello there,

    Thank you for getting back to us.

    Try adjusting the logo height and padding and let us know if this resolves this issue.

    7449829865.png

    As for the menu spacing, 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):

    #header-outer[data-format=centered-menu-under-logo] #top .span_9 nav>ul>li:not(#social-in-menu):not(#search-btn):not(.slide-out-widget-area-toggle)>a {
        margin-bottom: 24px;
    }

    I hope that helps.

    Thanks,

  •  1
    jdudan replied

    Hi Andrew, the menu spacing worked perfectly and it is all good to go now!

    Did you happen to figure out why the colored bar still shows mobile breakpoints on Firefox for Mac OS?  Everything else is perfect.

    Thanks!

  •  8,839
    Tahir replied

    Hey Again,

    I see you got it working: 

    4454083960.png

    Thanks.


    ThemeNectar Support Team 

  •  1
    jdudan replied

    Thanks Tahir, yes, I got it working.  But the issue still persists on Firefox where the colored ban shows on all mobile breakpoints....

    Attached files:  Screenshot 2023-08-09 at 8.05.39 AM.png

  •  8,839
    Tahir replied

    Hey Again,

    You would need to wrap the colored bar code in a media query for it to work only on desktop. 

    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 (min-width: 1000px) {
        body[data-slide-out-widget-area-style=fullscreen-alt] #header-outer {
            background: rgb(2,0,36);
            background: linear-gradient(0deg, #cccccc  0%, #cccccc 30%, rgb(255 255 255) 30%, rgb(255 255 255) 245%) !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    jdudan replied

    You guys are amazing, thank you for the top-notch service and quick responses!!