質問

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.

役に立ちましたか?

解決

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

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top