6

I have the following folder setup:

Main
    css
        stylesheet.css
    sub
        example
            index.php
    index.php

How do I link stylesheet.css for the index.php file in example?

<link rel="stylesheet" type="text/css" href="css/stylesheet.css">

This only works for index.php in the Main section.

m4n0
  • 27,411
  • 26
  • 71
  • 84
frosty
  • 2,741
  • 4
  • 32
  • 59

2 Answers2

8

You can go two directories back like this: ../../

../ is used to fill the relative path structure.

<link rel="stylesheet" type="text/css" href="../../css/stylesheet.css">
m4n0
  • 27,411
  • 26
  • 71
  • 84
0

Try

<link rel="stylesheet" type="text/css" href="../../css/stylesheet.css">
Jost
  • 5,867
  • 8
  • 40
  • 68
amirlol
  • 63
  • 8