View Single Post
  #224  
Old 10-08-2007, 10:38 AM
 
alreadyregistered alreadyregistered is offline
 

Member
  
Join Date: Sep 2006
Location: Cocoa, Florida
Posts: 28
 

Default SOLUTION: Centering subcat name under photo || Mod for subcategories in columns

DIV is block-level. text-align does not center a DIV. The correct way to horizontally center a DIV is to use "auto" attribute, like so:
margin:0 auto 0 auto.

Tested. This will get you what you want:

.ColumnTitles {
TEXT-ALIGN: center;
WIDTH: 33%
PADDING-LEFT: 5px;
margin:0 auto 0 auto;
}
__________________
XCart Gold 4.1.3
Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.8.12 OpenSSL/0.9.6b PHP/5.0.3 mod_perl/1.27
Reply With Quote