Pagination Alignment Quick Fix

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TheLastSuperman
    Senior Member
    • Sep 2008
    • 1799

    Pagination Alignment Quick Fix

    Notice how the pagination is off in your forum?



    The page selection boxes at the top and bottom of the forum when listing countless threads or when the page splits into several pages the next/last buttons are off so let's fix!

    Edit the template vbulletin.css and find:

    Code:
    .pagination span.prev_next a, .pagination span.first_last a {
    	position: relative;
    	top: -2px;
    }
    
    .pagination span.prev_next a img, .pagination span.first_last a img {
    	position: relative;
    	display: inline;
    	top: 3px;
    }
    Replace with:

    Code:
    .pagination span.prev_next a, .pagination span.first_last a {
    	position: relative;
    	top: -1px;
    }
    
    .pagination span.prev_next a img, .pagination span.first_last a img {
    	position: relative;
    	display: inline;
    	top: 2px;
    }
    Result:

    Attached Files
    Last edited by TheLastSuperman; Sat 11 Jun '11, 10:34pm.


    Former vBulletin Support Staff
    Hacked recently? See my blog post "Recovering a Hacked vBulletin Site".
    Thinking outside the box? Need modification support? Visit www.vBulletin.org and have at it!
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Working...