Click to See Complete Forum and Search --> : [RESOLVED] IE6 - part of a letter cutoff


aj_nsc
02-29-2008, 10:19 PM
Here's the page:

http://www.stjohnslimos.com/horizon

Look at the "more..." links in the Recent Updates column in IE6 (and any other browser for comparison). The "m" is getting half cut off. Is this a bug or am I completely missing something in my stylesheet? If it is a bug, any ideas on how to fix it?

Centauri
02-29-2008, 11:12 PM
This is due to the negative text indent on the <li> cascading to the <a> - IE chops off the display as the text is actually outside the element. Cure here is to over-ride the text indent :ul.updates li a.more { float: right; text-indent: 0;}

aj_nsc
03-01-2008, 06:32 AM
Thanks Centauri.