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.

Was it helpful?

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; }

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top