UBB.Dev
I'd like to style the 'New Topic' button but cannot find what TPL file that code is located. I'd like to simply add an additional class to change the look/feel of it and then of course some corresponding css.

I'd also like to style the pagination but also wondering what TPL file that info is located.

Thanks. smile
The buttons on a forum listing (list of topics) page are in postlist.tpl, the buttons on a post listing (the thread itself) are in showflat.tpl.

As the pagination box uses a pagination class that's unique to the pagination area you can style the pagination box via "extra css" in the style editor with:
Code
.pagination .tdheader {
}
.pagination .alt-1 {
}
.pagination .alt-1 a {
}

The first being the "Page # of #" bit, the second being the page number, and the third being how you'd like the link to display.

A similar approach should work (read: untested) for the next/previous buttons as:
Code
#prev-next-links .tdheader {
}
© UBB.Developers