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
  • 29,823
  • 27
  • 76
  • 89
frosty
  • 2,779
  • 6
  • 34
  • 63

2 Answers2

9

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
  • 29,823
  • 27
  • 76
  • 89
0

Try

<link rel="stylesheet" type="text/css" href="../../css/stylesheet.css">
Jost
  • 5,948
  • 8
  • 42
  • 72
amirlol
  • 87
  • 8