Given a solitary <li /> I need to increase it’s size. Font-size works only in firefox, IE just shows it as same size.
Can I change the LI size another way, or set it’s image? Please note (and I know this is bad) there is no UL element, it is invalid markup as it is part of an older system which the design means the UL can’t be added in easily.
<li>elements are inline elements so they will get the inner elements’ width. You can set display property to “inline-block” and set a width. I guess it will solve your problem.