zpupster Posted December 22, 2011 Posted December 22, 2011 hello forum, i am using oscommerce 2.3.1 on my products_info page i added this--(in shortened form of) <div id="prodescriptions"> <ul> <li>some text</li> </ul> </div> here is the css that i am concerned with, the bullet shows up fine but there is also #prodescriptions li { padding-left: 21px; margin-bottom: 7px; font-size: 11px; line-height: 20px; background-image: url(images/Bluebullet.gif); background-repeat: no-repeat; background-position: left top; } a default bullet i have scoured the styleshhet and .li is listed, can anyone point and help point me where the default li-css is so i can get rid of it. thanks craig
zpupster Posted December 22, 2011 Author Posted December 22, 2011 and no .li is listed, can anyone point and help should read like this. craig
multimixer Posted December 22, 2011 Posted December 22, 2011 I would take a look to here for an overview Browsers do style the <li> by themselves if nothing else is defined. You could search for "reset css" in google regarding this and other issues, but I don't think it's necessary for you to do, it could open more issues that what it would close My community profile | Template system for osCommerce - New: Responsive | Feedback channel
zpupster Posted December 23, 2011 Author Posted December 23, 2011 thanks multi mixer, this is how i solved the problem. i went to the div above "contentText" and styled that and the default styling from the browser went away. .contentText li { list-style-type: none; } thanks again, craig
multimixer Posted December 23, 2011 Posted December 23, 2011 Well, this will apply to all li al over the store, not sure if you really want this. Maybe better to be more specific and use the id you already have? My community profile | Template system for osCommerce - New: Responsive | Feedback channel
Recommended Posts
Archived
This topic is now archived and is closed to further replies.