Venture Theme - change links in the header menu

Hi,

Please can someone assist me.

In the Venture theme, the links in the menu in the header are grey and when the mouse hovers over the link becomes white. If the link is selected then it stays white and there is a blue bar underneath.

I would like to make the following changes:

  1. All links are white (before hover).

  2. If mouse hovers on a link then the link stays white but there is a blue bar underneath the link.

  3. If the link is selected then it stays white and there is a blue bar underneath (no change needed for this).

Thanks in advance.

My site is www.electricrideco.com

@guyv - please add this css to the very end of your theme.scss file and check

.site-nav__link {color: rgba(255, 255, 255, 1);}

.site-nav__item:hover .site-nav__link:after {
    content: '';    position: absolute;    bottom: 0;    left: 20px;
    right: 20px;    height: 3px;    background-color: #006eff;
}
1 Like

@suyash1

That’s perfect! Thanks a lot!

One more question if you don’t mind - what do I need to add to the code to make the font for the links bold?

@guyv - font is already bold

@suyash1

It was bold previously but after adding the new code it is not bold.

Before:

After:

@guyv - the code I give you can not change font-weight, I checked site too , it is looking fine and bold

but try by adding this too

.site-nav__link {font-weight: bold !important;}
1 Like

@suyash1

Thanks! I noticed that the difference is between Firefox and Chrome. In Firefox the font is clearly bold but in Chrome it is not very bold. Must be a browser setting. Thanks again for your help.