Highlight What's New link

Andy.N

Well-known member
I'm trying to get my members to discover and use the What's New link on the navigation bar.
Is there any css I can add to the extra.css so that the What's New is highlight with color, different image icon, or something?
Thanks
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.navTab.forums .tabLinks .secondaryContent li:last-child a
{
	color: red;
}

The result:

Screen shot 2012-05-16 at 12.08.48 PM.webp

Technically this CSS is targeting the last link in the list, not the "what's new" link specifically. That just happens to be the last link so it works.
 
Top Bottom