문제

I have a style sheet at ../mytheme/css/layouts/mystyle.css. I'd like to reference to an image at ../mytheme/images/myimage.png. However, when I use this path in the mystyle.css file, the computer is looking for the picture at ../mytheme/css/images/myimage.png, which is wrong.

How can I set the correct path?

도움이 되었습니까?

해결책

the relative path inside mystyle.css should be

../../images/myimage.png

You start from layout folder, so

../ up to css folder
../ up to mytheme folder
images/ enter the image folder

then pick the right image

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top