So...descendent selectors are located in the CSS and what you have here is the HTML. You will start by removing the classes and then structuring the CSS so you have compound selectors that deal with the navigation. The structure for your navigation is a nav tag that has a list in it. Your list is missing tags to make it a list so you will need to fix the list so it has list items (
  • ) in it instead of list after list. Once you have the structure correct, you will structure the CSS so you are styling the nav ul li to do what you want it to do. small { text-align: left; } large { text-align: center; }