Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Absolute VS. Relative File Paths

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #42568
    mintertweed
    Participant

    Currently, my HTML uses absolute file paths because I can not seem to get the hang of relative file paths. For instance, on my Contact page, I use absolute file paths for all of the images, which looks like this:

    How do I make a relative file path that is a bit more manageable. I know that you can do things like images/, ./images/, or ../images/, but I am a bit confused on which one I should use, because I tried them all and none of them seem to work. In my CSS, I can use relative file paths just fine:

    header {
    background-image: url(images/header-rainbow.png);
    }

    But it does not seem to be that easy in HTML. Any help would be greatly appreciated. Thank you.

    #123806
    TheDoc
    Member

    `src=”/image.jpg”` == the root folder of the website

    `src=”image.jpg”` == same folder as current page

    `src=”../image.jpg”` == one folder up from current page

    `src=”../../image.jpg”` == two folders up from current page, etc

    In your first example, you could do two different things:

    Or,

    Author
    Posts
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.