• Resolved LouieAh

    (@louieah)


    Hi guys,
    I have a problem were the majority of my linked texts are a greyish colour, however this one link is a darker grey for someone reason and I’m not sure why. Would be great is someone could help.

    Here’s the link to the website page in particular: https://carseatsuk.com/best-group-0-car-seats/

Viewing 3 replies - 1 through 3 (of 3 total)
  • WhiteScreenOfDeath

    (@whitescreenofdeath)

    Are you talking about the link in Menu? If so, every menu page that has child menu, appears darker grey on your website. You can edit color in theme css file. But for that you need some basic css knowledge.

    Michael

    (@alchymyth)

    the darker color shows on the link of the currently viewed page.

    this is set in style.css of your theme:

    .main-navigation .current-menu-item > a,
    	.main-navigation .current-menu-ancestor > a,
    	.main-navigation .current_page_item > a,
    	.main-navigation .current_page_ancestor > a {
    		color: #636363;
    		font-weight: bold;
    	}

    overwrite it with your own style in style.css of the child theme.

    example:

    .main-navigation .current-menu-item > a,
    	.main-navigation .current-menu-ancestor > a,
    	.main-navigation .current_page_item > a,
    	.main-navigation .current_page_ancestor > a {
    		color: #c3c3c3;
    		font-weight: bold;
    	}
    Thread Starter LouieAh

    (@louieah)

    ok thanks for the help guys. It sorta resolved itself for some reason, but yes for future reference I will use that piece of code thankyou

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘One link text is a different colour’ is closed to new replies.