HTML - how do i go up a directory, i have a css sheet in the main area but...

Use ../ ((dot)(dot)(forward slash))

So if you are in the directory index/about/ then to get to index, you would do something like:

<link rel="stylesheet" type="text/css" href="../css/main.css" />
which will take you to the index folder, to the CSS folder, and then get a file named main.css.
 
Back
Top