MyBB Community Forums

Full Version: Tweaking my theme..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basic question for now. (most probably will be simple)

My skin was orginally designed for 1.2 and when it was updated, it contained the old pagenav (right title I'm not sure) but I'd like to make it look a little nicer like most 1.4 themes.

Would someone be able to tell me how to change it?

[Image: 2nl8j8w.png]

~Kerrang!
Im guessing just revert to original the forum navigation templates
(2009-09-19, 05:38 AM)MyBBhehe Wrote: [ -> ]Im guessing just revert to original the forum navigation templates
Might not of been the right place, though I've looked in the multipage and navigation part and see no changes.

Thanks for helping Smile
You need to update the .pagination classes;
.pagination {
	font-size: 11px;
	padding-top: 10px;
	margin-bottom: 5px;
}

.tfoot .pagination, .tcat .pagination {
	padding-top: 0;
}
.pagination .pages {
	font-weight: bold;
}

.pagination .pagination_current, .pagination a {
	padding: 2px 6px;
	margin-bottom: 3px;
}

.pagination a {
	border: 1px solid #81A2C4;
}

.pagination .pagination_current {
	background: #F5F5F5;
	border: 1px solid #81A2C4;
	font-weight: bold;
}

.pagination a:hover {
	background: #F5F5F5;
	text-decoration: none;
}

^ that's the default 1.4 pagination CSS.