简体   繁体   中英

List bullets still how although in CSS I put “list-style:none”

I have a CSS problem on this page: http://www.fastclickad.com/ask-for-your-free-seo-analysis/

For some reason, bullets still show although I inserted in the style sheet several instructions so the list styles don't inherit from the theme.

When I "inspect element" with google Chrome everything seems to go smooth, except the bullets still show!

Can you help me?

You have a border specified which, if removed, prevents the arrow:

.aritclecontent ul li::before, .sidebarwidget ul li::before {
  border-left: solid #0473B2;
}

So you'll need to do something like:

.gform_body ul li:before {
  border-left:none!important;
}

The !important could be frowned upon, so you might wish to analyse your styles and refactor accordingly to remove the need for using it, if indeed it is necessary.

尝试这个 ..

 list-style-type: none;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM