Using CSS can someone please tell me how to text align left the <li> element of an unordered list. Firefox looks good, but for someone reason in IE the list is centred due to the table it's in, so I want to try and just align the text in the list if possible...
in your css: li { text-align:left; } ??? Though I question why you'd have a list inside a table or why the table elements are set to center...
if you're doing it right (and it doesn't sound like you are) you need to remove the default padding IE gives it.