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

Can anyone assist me with this code that I am writing for a personal project? It is not allowing me to display.

The side bar I have coded in a personal project is not displaying. Can anyone tell me why?

<div class="sideright">

<h3>Features</h3>

<ul>
<li><a href="Featured Artist"></a></li>
<li><a href="Items"></a></li>
<li><a href="Brands"></a></li>
<li><a href="Up And Coming Events"></a></li>
<li><a href="Heavy Rotation"></a></li>
</ul>

</div>

1 Answer

Steven Parker
Steven Parker
231,008 Points

This should display, but only as a column of bullet symbols. It looks like perhaps the "href" values were actually meant to be the text inside the anchor elements; and maybe the actual href values are yet to be added.

<div class="sideright">
  <h3>Features</h3>
  <ul>
    <li><a href="<put actual href here>">Featured Artist</a></li>
    <li><a href="<put actual href here>">Items</a></li>
    <li><a href="<put actual href here>">Brands</a></li>
    <li><a href="<put actual href here>">Up And Coming Events</a></li>
    <li><a href="<put actual href here>">Heavy Rotation</a></li>
  </ul>
</div>

Thank you sir! :-) Can I also ask you, are you a full stack developer or full time employed as a developer? I have some questions.

Steven Parker
Steven Parker
231,008 Points

Well, yes, I am a full-stack developer, and full-time employed. But there's plenty of folks in the community who will be happy to answer any other questions.

Happy coding!

Thank you sir, if you know anyone that is interested and coding the initial beta phase of a startup for some potential equity and or side work, please pass the word that I am looking.

Steven Parker
Steven Parker
231,008 Points

I don't use them myself, but I know there are a number of websites that specialize in helping freelance developers connect with potential jobs, and vice-versa.

Thank you.