Shape 5

Joomla Templates => Fitness Center - Club => : mwb12345 June 06, 2017, 01:49:52 PM



: Visited Hyper Link color in fitness template
: mwb12345 June 06, 2017, 01:49:52 PM
Hi,

Is there anyway to independently control the visited link color on the main menu?

my development site is at:

http://www.iotran.com

I would like to make the bottom footer red like the main menu, but when I do that, then visited link is the same red color and disappears.  I see you can control this in the responsive menu for mobile and tablet, but not desktop.


: Re: Visited Hyper Link color in fitness template
: mikek June 07, 2017, 07:23:50 AM
Hello,

I'm sorry I am not seeing that issue. I have clicked on several links in the bottom menu and they are all staying white whenever I click on them. That is how they are intended to work. Is there a particular one where the problem can be seen or a specific url?


: Re: Visited Hyper Link color in fitness template
: mwb12345 June 07, 2017, 08:20:35 AM
Hi,

What i meant is the main menu links, not the bottom menu , that is fine.  The main links when vistited are red and disappear.


: Re: Visited Hyper Link color in fitness template
: mikek June 07, 2017, 04:51:27 PM
Hello,

The main menu links aren't red because they are visited, they are red because that is the active page you are on which is controlled by class. You are having this problem because you've set the header to the exact same color as the links. I would suggest using a different colors, if you set your active and hover colors to be white the user will never know what page they are on.

This is controlled by the template's highlight color which is set in the index.php file, specifically under:


.btn-link, #s5_nav li.active span, #s5_nav li.active a, #s5_nav li.mainMenuParentBtnFocused a, #s5_nav li.mainMenuParentBtnFocused span, a, .highlight1, .class_item_dollar, .class_item_cents {
    color: #f93004;
}

You could try something like this in the index.php file right above the closing </style> tag which will override the highlight color:

#s5_nav li.active a, #s5_nav li.mainMenuParentBtnFocused a, #s5_nav li.mainMenuParentBtnFocused span, a {
color:#FFFFFF !important;
}


: Re: Visited Hyper Link color in fitness template
: mwb12345 June 08, 2017, 09:59:04 AM
Thank you!!  that worked perfectly.