How To Edit Active Category Link

Hi,



Please let me know how to change the style of the selected active category link in a category menu. Here is the category code for showing the category links.


  • {$category.category}


  • Just need to find out how to change the style of the fn_check_is_active_menu_item ?

    I would like to have a difference kind of border around the selected category link.

    Thanks.

    There is no need to change the code here.



    All active categories will have extra active class.



    Just create correct CSS rule to add border around the selected category link.

    Would you be able to provide an example of the CSS rule to add in the base.css file?

    [quote name='hobbiesdeveloper' timestamp='1423580942' post='204878']

    Would you be able to provide an example of the CSS rule to add in the base.css file?

    [/quote]



    Please try



    ul.dropdown-multicolumns li.active a {
    border: 1px solid white;
    }

    Thanks.

    Would you happen to know what css rule is associated with changing the dropdown vertical hover tab text color?



    I would like to change the text color of the category tab once it's hovered over?



    Thanks.

    [quote name='hobbiesdeveloper' timestamp='1423590815' post='204895']

    Would you happen to know what css rule is associated with changing the dropdown vertical hover tab text color?



    I would like to change the text color of the category tab once it's hovered over?

    [/quote]



    Please try



    ul.dropdown-multicolumns li:hover a {
    color: red;
    }

    Perfect.