Box around links and vertical lines

Hi!

I have 2 questions.

The first is to those who has taken the course “Practical CSS”. In the primary-navigator there in a box around the links, I’m going insane cus I cannot remove it, cant figure it out, should be so easy. Please help!

the second is, how do I add vertical lines? ex going down the left side of my side-menu.

Thank you for answers!

/Iquo

Hi lquo,

The first is to those who has taken the course “Practical CSS”. In the primary-navigator there in a box around the links, I’m going insane cus I cannot remove it, cant figure it out, should be so easy. Please help!

Could you please supply us with either code or a live page to look at as without it we would just be guessing.

the second is, how do I add vertical lines? ex going down the left side of my side-menu.

The most simple way would be to use the border-left property on your navigation selector, see the example below.

#mySelector {
    border-left: 5px #ccc dashed;
}

I have those files but still don’t know what box you mean. The big black header box? As SgtLegend said, you need to post an exaple of the page, with HTML and CSS.