This topic has 1 reply, 2 voices, and was last updated 8 years, 10 months ago by Fem.
Viewing 2 posts - 1 through 2 (of 2 total)
Hi there
I’ve made changes to the active link colour via styling –> menu –> active link colour but this isn’t reflected when the page is refreshed. Changes to other elements have worked however. I’ve seen the same thing in the support forum but no clear sign of how to resolve.
Can you advise please?
Thanks
Go to labora/css/skin.php and change the following code and replace it
Find Code
// Menu Active Link Background
$custom_css .= labora_gen_css_prop( array(
'.header-style3 .sf-menu li.current-menu-item > a',
'.header-style3 .sf-menu li.current-menu-ancestor > a',
'.header-style3 .sf-menu li.current-page-ancestor > a'
), array(
'color' => $labora_mmenu_active_link,
)
);
Replace Code
// Menu Active Link Background
$custom_css .= labora_gen_css_prop( array(
'.sf-menu li.current-menu-item > a',
'.sf-menu li.current-menu-ancestor > a',
'.sf-menu li.current-page-ancestor > a'
), array(
'color' => $labora_mmenu_active_link,
)
);
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.