I have a simple horizontal UL LI main nav which I am trying to align to the center of the page. Text-align, which works in the other browsers is working but this does not work in IE7.

Is there something I am missing about this bug in IE7?

Thanks!

link|improve this question

53% accept rate
Could you show html/css code? – fantactuka Aug 2 '10 at 12:14
Hi Fantactuka. I'm still working on localhost but seem to have found a solution for now which I will answer now. Thanks! – Sixfoot Studio Aug 2 '10 at 12:24
feedback

2 Answers

up vote 1 down vote accepted

Its bug is IE7 :

so look this post where in artile he discuss about the bug and solution for this bug : http://haslayout.net/css/Text-Align-Bug

Also check this post : http://css-discuss.incutio.com/wiki/Centering_Block_Element

link|improve this answer
Awesome, thanks June R! I will look into it ;) – Sixfoot Studio Aug 2 '10 at 12:37
Could you please answer stackoverflow.com/questions/9943560/… ? – Lijo Mar 30 at 13:30
feedback

Seems if I add a conditional CSS for IE7 and say:

.RadNav .RadMenu ul.rmRootGroup {
display:inline;}

Rather than:

.RadNav .RadMenu ul.rmRootGroup {
display:inline-block;}

It works.

I would appreciate some thoughts on this as I would love to not be able to use conditional css.

Thanks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.