Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • Saguaros Moderator
    #1081116

    Hi,

    I see the difference from the font weight the the menu text, you can go to file: http://us508.directrouter.com/~ynjxxaul/templates/ja_elicyon/local/css/themes/bystheme/template.css

    At approx line 1651:

    .navbar-default .navbar-nav > li > a {
      color: #ffffff;
      position: relative;
      padding-left: 0;
      padding-right: 0;
      font-weight: 600;
    }

    change the font-weight to: font-weight: inherit;

    Jonathan Friend
    #1081124

    Thank you, that worked well to make the fonts look the same.

    Can you help with the css to make the animation work for the Menu Headings? These menus are static on rollover and are highlighted in green on screenshot.

    I’d like the rollover white bar animation in the top margin of the menu bar to work just like the Club Calendar and Login menu items

    Is that possible?
    Thanks, JR

    Jonathan Friend
    #1081242

    Hi, I have been trying to solve this myself butI am not having any luck.

    .nav > li > .separator
    {
    position: relative;
    display: block;
    transition: padding 350ms;
    background-color: transparent;
    color: #ffffff;
    }

    Am I getting close?

    JR

    Saguaros Moderator
    #1081409

    Hi JR,

    You can try with this custom CSS:

    .navbar-default .navbar-nav > li > span:hover:after {
        width: 100%;
    }
    
    .navbar-default .navbar-nav > li > span:after {
      background: #ffffff;
      content: "";
      display: inline-block;
      position: absolute;
      height: 2px;
      width: 0;
      top: 0;
      left: 0;
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
    }
    Jonathan Friend
    #1081485

    That worked brilliantly, thank you.
    I would have never been able to sort out the code for this so thanks for your help.
    JR

Viewing 5 posts - 1 through 5 (of 5 total)

This topic contains 5 replies, has 2 voices, and was last updated by  Jonathan 6 years, 11 months ago.

The topic ‘CSS mods to 'menu heading' type menu items’ is closed to new replies.