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
jack benning
263 PointsI still have bullet points after my images after normalizing it on my website
I have just normalized the code and it only got rid of the bullet points on the titles not the pictures
9 Answers
Gerardo Blanco
13,223 Pointswhat you want to do is
ul { list-style-type: none;}
remove my img line thats doing nothing
Gerardo Blanco
13,223 PointsTry this
css img {
text-decoration: none;
}
If you share the code i can help more
jack benning
263 PointsIt didn't work
/******************* GENERAL *******************/
wrapper {
max-width: 940px; margin: 0 auto; padding: 0 5%; }
a { text-decoration: none; }
css img { text-decoration: none; }
/******************* HEADING *******************/
logo {
text-align: center; margin: 0; }
h1, h2 { font-family: 'Yatra One', cursive; }
/******************* COLORS *******************/
/* site body */ body { background-color: #fff; color: #999; }
/* green header */ header { background: #6ab47b; border-color: #599a68; }
/* nav background on mobile */ nav { background: #599a68; }
/* logo text */ h1, h2 { color: #fff; }
/* links */ a { color: #6ab47b; }
/* nav link */ nav a, nav a:visited { color: #fff; }
/* selected anv link */ nav a.selected, nav a:hover { color: #32673f; }
Gerardo Blanco
13,223 PointsCan i see your HTML
jack benning
263 Points<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jack Benning and Alex Harris | Creators</title>
<link rel="stylesheet" href="css/normalize[1].css">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Yatra+One" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1> Jack Benning and Alex Harris</h1>
<h2>Creators and Photographers</h2>
</a>
<nav>
<ul>
<li><a href="index.html" class="selected">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul>
<li>
<a href="Img/picture-01.jpg">
<Img src="Img/picture-01.jpg" alt="">
<p>A picture of young swans at Kew Gardens London</p>
</a>
</li>
<li>
<a href="Img/Picture-02.jpg">
<Img src="Img/Picture-02.jpg" alt="">
<p>A picture of a terracotta warrior at Buskot</p>
</a>
</li>
<li>
<a href="Img/Picture-03.jpg">
<Img src="Img/Picture-03.jpg" alt="">
<p>Line to heaven, Buskot</p>
</a>
</li>
<li>
<a href="Img/Picture-04.jpg">
<Img src="Img/Picture-04.jpg" alt="">
<p>Really nice plant at Buskot</p>
</a>
</li>
<li>
<a href="Img/picture-05.jpg">
<Img src="Img/picture-05.jpg" alt="">
<p>A picture of a cute dog in my area called Mickey</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="https://www.instagram.com/jack_benn/?hl=en">
<Img src="Img/insta-logo.jpg" alt="Instagram Logo">
</a>
<p> 2016 Jack Benning and Alex Harris </p>
</footer>
</div>
</body>
</html>
Gerardo Blanco
13,223 Pointsimg { text-decoration: none; }
without the css
jack benning
263 Pointson the html or css?
jack benning
263 Pointsdidn't work
Gerardo Blanco
13,223 Pointsit didnt work??
jack benning
263 PointsIt worked, thanks so much :)
jack benning
263 PointsI have a question though, when uploading the website, is it free and will it get taken down when my trial ends?
Gerardo Blanco
13,223 PointsYou are welcome.
Remember to mark your question as answered
Glad i can help
jack benning
263 PointsAlso can I still edit the website when my trial ends?
Gerardo Blanco
13,223 PointsI dont know but i recomend you to make a copy so you can edit it on your own text editor.
Sublimetext 3 and atom are some of the best
jack benning
263 Pointsthanks and how do I mark it as answered
Gerardo Blanco
13,223 PointsThat i dont know... hahahaa
Gerardo Blanco
13,223 PointsI think by upvoting my post that helped you
jack benning
263 Pointsjack benning
263 Pointsas well as the first bit?
Gerardo Blanco
13,223 PointsGerardo Blanco
13,223 Pointsis there anything else i can help you with?