html - IE8 list formatting issue -
so have page bulleted items reason not coming in on ie8 should, can please steer me in right direction?
http://careers.express-scripts.com/search?search=&category=&state=mo&csrf-token=
thanks
i don't have ie can't test instinct says might text-indent , padding on li's.
you've got:
#body_left ul li {     font-family: helvetica,sans-serif;     font-size: 13px;     list-style: disc inside none;     padding: 5px 0 5px 33px;     text-indent: -1em; } but try:
#body_left ul li {     font-family: helvetica,sans-serif;     font-size: 13px;     padding: 5px 0;     margin-left: 33px; } 
Comments
Post a Comment