Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1064626
    ImpulseDev
    Participant

    Hi all just wondering how to remove the highlight bat from above my nav bar. meaning the line above my hovered / active page link

    #1064643
    ImpulseDev
    Participant

    Trying to add this in to replace it.

    /* Overline Reveal */
    .hvr-overline-reveal {
      display: inline-block;
      vertical-align: middle;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      box-shadow: 0 0 1px rgba(0, 0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -moz-osx-font-smoothing: grayscale;
      position: relative;
      overflow: hidden;
    }
    .hvr-overline-reveal:before {
      content: "";
      position: absolute;
      z-index: -1;
      left: 0;
      right: 0;
      top: 0;
      background: #2098d1;
      height: 4px;
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
      -webkit-transition-property: transform;
      transition-property: transform;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out;
    }
    .hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    
    
    #1064732
    Christian
    Moderator

    Hey there,

    To remove the line, please add the code below in your Appearance > Customize > Custom > CSS

    .x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a {
        box-shadow: none;
    }

    Hope that helps. 🙂

    #1064879
    ImpulseDev
    Participant

    Worked great thanks, another question. Sorry to bother you, in the recent posts element in the builder how can I have my recent forums topics appear in there?

    Thanks for all your help it’s been great so far, well worth the $$$

    #1065015
    Darshana
    Moderator

    Hi there,

    Did you mean bbPress forum topics? Please refer to their shortcode options for more information (https://codex.bbpress.org/features/shortcodes/).

    Hope that helps.

  • <script> jQuery(function($){ $("#no-reply-1064626 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>