Your Time:
Our Time:
← Back to discussions

Active Link colour

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 1 reply, 2 voices, and was last updated 8 years, 10 months ago by Fem.

  • 2017-11-07 at 9:29 pm
    Supported
    #22178
    CHRISC186
    Participant
    • Topics: 1
    • Replies: 1
    • Total posts: 2
    • Post count: 1

    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

    2017-11-08 at 12:10 pm
    #22183
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    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,
    		)
    	);
    

You must be logged in to reply to this topic.