Everyone in my office uses Macs and therefore most use Safari.
We have a page that has 30 checkboxes on it, I didn't even do the HTML myself but no matter if I use the html input checkbox with a label or an asp:Checkbox usig the text property for the label my boss is irritated because the checkbox is a little below center on the label.
I can only assume that this is due to Sarari and it's wonky rendering. I doubt there is a fix that wont be rediculously complicated (if there is please let me know). I didn't even do the html myself, I sent it out.
I tried to explain to him that's how Safari "is" but that wasn't acceptable. I googled to see if anyone else had run into such an issue, (I didn't google to hard though, figured I'd just ask you guys). What do I do when hit with an issue like this where he insists something so minor is unacceptable? Am I approaching this wrong? I mean the HTML is perfectly reasonable here it is:
<ul>
<li><asp:CheckBox CssClass="checkbox" runat="server" Text="Accessories" /></li>
<li><asp:CheckBox CssClass="checkbox" runat="server" Text="Art" /></li>
<li><asp:CheckBox CssClass="checkbox" runat="server" Text="Athletic Apparel" /></li>
<!-- etc... -->
</ul>
How can I explain this to him a way he will understand?