For some reason the asp:button's in IE7 add an extra 100px's (or so...) to the left of the button. this creates a problem for my css styling. Sure, I could go in and overwrite each individual button by giving it exact pixel dimensions.., but that would be a pain in the ass since the application my companies building has nearly 50 pages involved with about 10 buttons per page (you can do the math!). I would much rather let asp:button grow as it needs to depending on the size/width of the text.

Any help would be much appreciated.

ASPX (html)

<div class="sales-order-buttons">
   <asp:Button ID="btnSearchSalesOrders" runat="server" Text="Search Sales Orders" />
   <asp:Button ID="btnViewAssociatedOrders" runat="server" Text="View Associated Orders" />
</div>

CSS

input[type="submit"] {
   background: url("../images/arrow.png") no-repeat left red;
   color: #006aae;
   float: left;
   text-align: left;
   display: block;
   width: auto;
   margin-left: 10px;
   text-indent: 40px; 
}

input[type="submit"]:hover { 
   color: #009CFF; 
   cursor: pointer;
}
link|improve this question
Is there possibly something in the style sheet (or another style sheet) that's causing it to stretch? Are the buttons overlayed with any images or anything? Can you post some code? – James Johnson Aug 9 '11 at 20:09
there is nothing in the stylesheet making it do this, it is purely an IE7 bug I believe because in all other browsers (firefox, ie8, etc) the button width stays correct. – user615041 Aug 9 '11 at 20:36
Is it all buttons throughout the site? Can you post some code that I can look at? – James Johnson Aug 9 '11 at 20:40
added the aspx and css to main question – user615041 Aug 9 '11 at 20:42
to answer your question, yes. there will probably be over 200 to 300 buttons throughout the web application when complete. Im running into the width issue in IE7 and its throwing my whole layout off. Depending on how i set text-align, it will automatically add about 100px to the left side or right side of the <asp:button> tags – user615041 Aug 9 '11 at 20:47
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.