In the product listing page, you may also want to add a little bit of space around the lines that say: - Displaying X to Y (of Z products).
Your sections of CSS that control this currently says
Code:
/*navigation*/
.navSplitPagesResult {}
.navSplitPagesLinks {}
If you do this, it will add a bit of space to the top and the bottom, thereby taking it away from the product listings, and making the look a bit cleaner.
Code:
/*navigation*/
.navSplitPagesResult {margin: 0.5em 0 0.5em 0;}
.navSplitPagesLinks {margin: 0.5em 0 0.5em 0;}
Bookmarks