Question

I currently am using a custom LI style to present images of YouTube clips. The style seems to be working as intended. The issue is that SharePoint is also applying a bullet on the side of each image in the list. I presume there is a style I need to override. How would I go about overriding this so I only see my intended style.

Était-ce utile?

La solution

I'm assuming you have an UL/OL tag with a custom CSS class.

If you do something like this, it should kill the bullets:

ul.YOURCLASS { list-style-type: none; }

Autres conseils

See this http://css-tricks.com/2708-override-inline-styles-with-css/ Use this "!important;" Hope that helps Patrick

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top