XF 1.5 Alerts styling

mastera

Member
Is it possible to move the number of alerts next to the word "Alert" instead of on top of it? If yes, where and how can I do it?

Thanks.
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.navTabs .navLink .itemCount
{
	position: static !important;
	padding: 1px 2px;
}
.navTabs .navLink .itemCount .arrow
{
	display: none !important;
}

This works in my testing. You may need to tweak it to look exactly like you want.
 
Top Bottom