SitePoint Sponsor

User Tag List

Results 1 to 3 of 3

Thread: Need Help Determing Which CSS Declaration is Causing the Bullets to Not Be Appearing

  1. #1
    SitePoint Addict
    Join Date
    Nov 2002
    Location
    Maryland
    Posts
    300
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Need Help Determing Which CSS Declaration is Causing the Bullets to Not Be Appearing

    This Drupal site stylesheet is a nightmare. Can anyone help me determine what is causing the bullet-ed text in the middle to not display their bullets? Is there a good tool out there that helps with problems like this?

    Thanks.

    http://low.herrmanneasyedit.com/care...ciate-benefits

  2. #2
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    20,311
    Mentioned
    225 Post(s)
    Tagged
    3 Thread(s)
    It's easy to answer this with the standard tools on browsers like Chrome. Just right click on an element and choose Inspect Element. You'll see that there is a rule—duplicated in two style sheets—causing the problem:

    Code:
    ol, ul {list-style: none;}
    This appears in two style sheets at the specified lines:

    screen.css, line 7
    foundation.css, line 52
    Facebook | Google+ | Twitter | Web Design Tips | Free Contact Form

    Try your hand at the new JavaScript Challenge!

    If you don't like getting your feet stuck in a bog, avoid Twitter BootsTrap.

  3. #3
    SitePoint Addict
    Join Date
    Nov 2002
    Location
    Maryland
    Posts
    300
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks ralph.m!!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •