2
Answers

few questions

abed akhi

abed akhi

12y
1.9k
1
Hi,

How can I center the text placed inside the menu I've written:

<div style="background-image:url('CompWebDesignImages/cell-grey.jpg'); text-align:center">
  <asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" 
        onmenuitemclick="Menu1_MenuItemClick" style="margin-left: 13em"> 
  <staticmenuitemstyle ItemSpacing="10" Font-Size="Large" ForeColor="#CC3300"/> 
   </asp:Menu>
</div>

and it worked with chrome but not with IE how to fix that?
plus does anyone know why the float option in css does not work with sea monkey browser and some firefox versions... and how to fix that?

thanks.

Answers (2)
0
abed akhi

abed akhi

NA 57 23.5k 12y
Hi, as for the text-align:center

I replaced it with <center>...</center>

and it worked, thanks.
0
abed akhi

abed akhi

NA 57 23.5k 12y
Hi,

so for the float I replaced it with :

.inline
{
    
    display:inline-block;
    display:-moz-inline-box;
    vertical-align:top;
    
 }

and it worked on all the browsers but what about the text-align:center how should I fix it?