Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Adding Pages to a Website Add Iconography

Bullet points not disappearing..

My css is correct:

ul.contact-info {
  font-size: 0.9em;
  margin: 0;
  padding: 0;
  list-style-type: none;

}

So maybe the problem is with my HTML??

```html```

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Mustafa Kasim | Photographer</title>
        <link rel="stylesheet" href="css/normalize.css">
        <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch:400,700' rel='stylesheet' type='text/css'>
        <link rel="stylesheet" href="css/main.css">
    </head>
    <body>
        <header>
            <a href="index.html" id="logo">
                <h1>Mustafa Kasim</h1>
                <h2>Photographer</h2>
            </a>
            <nav>
                <ul>
                    <li><a href="index.html">Portfolio</a></li>
                    <li><a href="about.html">About</a></li>
                    <li><a href="contact.html" class="selected">Contact</a></li>
                </ul>
            </nav>
        </header>
        <div id="wrapper">
        <section>
            <ul id="gallery">
                <li>
                        <a href="img/IMG_2316.jpg">
                    <img src="img/IMG_2316.jpg" alt="">
                    <p>Experimentation with Filters</p>
                        </a>
                </li>
                <li>
                        <a href="img/IMG_2317.jpg">
                    <img src="img/IMG_2317.jpg" alt="">
                    <p>Exploring Japan</p>
                        </a>
                </li>
                <li>
                        <a href="img/IMG_2318.jpg">
                    <img src="img/IMG_2318.jpg" alt="">
                    <p>Serenity</p>
                        </a>
                </li>
                <li>
                        <a href="img/IMG_2324.jpg">
                    <img src="img/IMG_2324.jpg" alt="">
                    <p>Unrivalled Architecture</p>
                        </a>
                </li>
                <li>
                        <a href="img/IMG_2327.jpg">
                    <img src="img/IMG_2327.jpg" alt="">
                    <p>Passing through</p>
                        </a>
                </li>
            </ul>
        </section>
        <footer>
            <a href="http://twitter.com/CebollaGrande"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a>
            <a href="http://facebook.com/mustafa.kasim.71"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a>
            <p>&copy; 2014 Mustafa Kasim.</p>
        </footer>
            </div>
    </body>
</html>

2 Answers

Answered in previous thread.

I have tried that too, as explained in the video but no luck.

Chris Shaw
Chris Shaw
26,676 Points

Hi Mustafa,

This is a duplicate of https://teamtreehouse.com/forum/bullet-points-still-appearing, please refer to your original thread as it has the answer.

Hi, I can't seem to find the answer in the original thread, because the gentleman that gave me the answers didn't answer my last question when I uploaded the HTML code..

Chris Shaw
Chris Shaw
26,676 Points

https://teamtreehouse.com/forum/bullet-points-still-appearing#show-answer-458582

He asked if you could change the CSS selector from ul.contact-info to ul#gallery.