Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #349597

    Thai
    Moderator

    Hi There,

    Please find following code from your Custom > CSS:

    .x-navbar .x-nav > li:first-child > a {
      border-left: 1px solid #171717 !important;
      box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.065), inset -1px 0 0 0 rgba(255, 255, 255, 0.065) !important;
    }

    Then change to:

    .x-navbar .x-nav > li:first-child > a {
      border-left: none !important;
      box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.065), inset -1px 0 0 0 rgba(255, 255, 255, 0.065) !important;
    }

    Hope it helps.

    #350040

    ahurlburt53
    Participant

    The Black bar still appears. Any Suggestions

    #350056

    ahurlburt53
    Participant
    #350191

    Nabeel A
    Moderator

    Hi again,

    Please paste the following code in your child theme’s style.css file:

    .x-navbar .x-nav > li:first-child > a {
        border-left: none !important;
    }

    Let us know how this goes!

    #350521

    ahurlburt53
    Participant

    Please help with navbar. There still is a black bar that hovers only http://www.tampabaywebsitedesigner.com/tampa-online-marketing-services/

    View post on imgur.com

    #350535

    Paul R
    Moderator

    Hi,

    To remove it, you can add this under Custom > CSS in the Customizer.

    
    body .x-navbar .x-nav > li:first-child > a {
        border:0;
        box-shadow:none;
    }
    

    Hope that helps.