Okay
  Public Ticket #2557707
Need help with Salient child theme!
Closed

Comments

  •  5
    michellelamar started the conversation

    Please can you help me solve two problems? I can't seem to get these two features to work, I am using the "Start-Up" child theme.

    1)Navigation bread crumbs are at the top of every page. I don't want the bread crumbs on any page. What custom CSS code can I use to take the breadcrumbs off the entire website?

    2)Main navigation drop down menu. Drop down menu hard to see. Esp on pages with transparent nav menu, you can hardly see the drop down menu. I love this theme but the nav menu is hard to get right for me. 

    I am on a very tight timeline! Please help! Thank you. 

  •  2,965
    Andrew replied

    Hi There,

    Thank you for contacting us.

    To remove breadcrumbs, paste the following code in your custom css code:

    #breadcrumbs {
    display:none;
    }

    You can also adjust the drop down menu settings from theme options as shown below:

    8918545374.png

    Kind Regards.

  •  5
    michellelamar replied

    Thank you very much for your assistance on the breadcrumbs. 

    I have been trying to do the dropdown menu, using the tool you pointed out in your reply. The problem is that the settings do not reflect what the drop down is actually doing. 

    I set the parameters for the website and it does not work. I am certain that is "operator error" and not with the theme. Thank you. 

  •  2,965
    Andrew replied

    Hi there,

    Try the following custom css in Salient > General settings > CSS/Script related:

    body:not([data-header-format="left-header"]) #top .sf-menu li ul, #top nav > ul > .megamenu > .sub-menu, body #top nav > ul > .megamenu > .sub-menu > li > a {
        color: white !important;
        background: blue !important;
        opacity: 1 !important;
    }
    

    Thanks.