View Single Post
  #8  
Old Apr 13, 2010, 10:25 AM
Ira Ira is offline
Senior Member
 
Join Date: Feb 2009
Posts: 208
Default

Quote:
Originally Posted by Datschge View Post
The left columns cells should use following CSS code so that the left column's text is aligned with the right column's text, i.e. at the top right of the cells:
Code:
vertical-align: top;
text-align: right;
Actually, it's still off like that (less off, but it stands out more to me than the it being centered), the right column needs to be aligned top as well for the text to line up nicely. And this is just personal preference but I think having the labels right aligned looks like crap.

Some stylish:
Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("vgmdb.net") {
#album_infobit_large td[nowrap="nowrap"] { text-align: right !important; }
#album_infobit_large td { vertical-align: top !important; }
}

Last edited by Ira; Apr 13, 2010 at 10:28 AM.
Reply With Quote