At the end of Part 4, I set a little exercise for you to add an h1 title and p elements into the leftcol div. How did it go, OK? Hopefully you completed it just fine by implementing descendant selectors in much the same way as you have already covered in the series.
You can delete all that information from your page for the time being. If you never bothered with the exercise and you left the temporary <br /> tags in the leftcol div, then please delete them now.
Open basiclayout.html in the Code view of Dreamweaver. Because you need to make some precise selections within your code, the Design view really won't do. Code view shows you exactly what you are doing.
You need to perform the following tasks, which I have listed below. You can also view them in the presentation linked below the list.
Play the demo: Changing the Page Structure
Once you complete the changes above, you can preview the page in your browser of choice (see Figure 1).

Figure 1. Navigation now inside the leftcol div
As you can see from Figure 1, the navigation div now resides in the leftcol div. You still have some styling to do but I'm sure you would agree that making this big change was relatively painless in CSS. If you had been using tables to lay out your design, this alteration would have required a major redesign of the table structure. Notice how the other elements on the page simply moved up to fill the void left by by moving the nav div.
Let's embark on a little tidying up of the debugging colors:
#content selector.background-color property and its value..container class selector.background-color property and its value.#wrapper selector.background-color value to #ffffff (white).#leftcol selector.background-color property and its value.Preview the page again in your browser of choice (see Figure 2).
Figure 2. Colors tidied up on the page
Leave the background color you set on the ul element for now. Next we will begin to restyle the unordered list to give it a completely new look.