vote up 0 vote down star

What would the relative path of the following url be?

http://domain.com/wp-content/themes/themename/images/breadcrumb%5Fsep.png

flag

49% accept rate
4  
Relative to what? – ndim Nov 4 at 22:31

4 Answers

vote up 2 vote down check

/wp-content/themes/themename/images/breadcrumb%5Fsep.png

"relative" to the host.... I think that is what you mean, that is the common meaning.

link|flag
vote up 0 vote down

In the source html file could be relative to some path defined by base href, see:

<head>
<base href="http://domain.com/wp-content/themes/themename/images" />
</head>

then

<a href="breadcrumb%5Fsep.png">text</a>

Anyway, please be more precise with your question to get better answers :)

link|flag
vote up 1 vote down

Depends on where it's being called from hence the term relative, it's relative to where it's being called from.

If you're in a sub-folder of your root other than wp-content then the relative path would be

../wp-content/themes/themename/images/breadcrumb%F5sep.png

link|flag
vote up 4 vote down

Relative to the root of your domain? /wp-content/themes/themename/images/breadcrumb%5Fsep.png

Relative to the Themes folder? themename/images/breadcrumb%5Fsep.png

It depends on where you are actually placing the link. Pretty much just remove the common parts of the path.

link|flag
@martin clayton, oops. Thanks. – Brandon Nov 4 at 22:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.