MyBB Community Forums

Full Version: Cookie Crumbs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You know, the ones like:

Forum Name / Announcements and Discussion / Announcements / Thread Name

I'm trying to change their colour, I've edited .pagination, but it isn't working. I'm starting to think that's wrong.
I believe the /'s are in the navigation --> nav_sep template.
Probably because this is the navigation, not the pagination Smile You need these:

.navigation {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}
.navigation a:link {
	text-decoration: none;
}
.navigation a:visited {
	text-decoration: none;
}
.navigation a:hover, .navigation a:active {
	text-decoration: none;
}
.navigation .active {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}
(2010-08-09, 11:05 AM)MattRogowski Wrote: [ -> ]Probably because this is the navigation, not the pagination Smile You need these:

.navigation {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}
.navigation a:link {
	text-decoration: none;
}
.navigation a:visited {
	text-decoration: none;
}
.navigation a:hover, .navigation a:active {
	text-decoration: none;
}
.navigation .active {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}

Thank you, I wasn't editing all those parts, so it never worked. Fixed. Big Grin