How can I change the text color of a single menu link?

radicalproxy

New Member
I would like to change the text of the menu that says Add Your Site, to green and bold, how can I do it?
Can it be done from Manage Custom Menus in extra attributes?

From there you can insert a button image that says Submit yor site?

vsmenu.jpg
 

Mark

Administrator
Staff member
you will need to edit child/wrapper.html

find:

Code:
<a class="nav-link" href="{$list_url}/join/">
Replace with:
Code:
<a class="nav-link greenlink" href="{$list_url}/join/">
Then add this to skins/default/user.css
Code:
.nav-link.greenlink {
    color: green !important;
    font-weight: bold;
}
 
Top