diff options
author | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-08-15 20:53:32 +0100 |
---|---|---|
committer | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-08-15 20:53:32 +0100 |
commit | e0e3d3c096e2d205aff2f239aedc2b4e7dee5329 (patch) | |
tree | a0e59bf8923a7c1164974cc4f775505aaaab4332 | |
parent | Fix relative paths for JS files (diff) | |
download | gentoaster-e0e3d3c096e2d205aff2f239aedc2b4e7dee5329.tar.gz gentoaster-e0e3d3c096e2d205aff2f239aedc2b4e7dee5329.tar.bz2 gentoaster-e0e3d3c096e2d205aff2f239aedc2b4e7dee5329.zip |
Make CSS image paths relative
-rw-r--r-- | web/css/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/css/style.css b/web/css/style.css index 8a931bc..ce312cd 100644 --- a/web/css/style.css +++ b/web/css/style.css @@ -47,7 +47,7 @@ td { } #header { - background-image: url('/img/header.png'); + background-image: url('../img/header.png'); width: 800px; height: 90px; } @@ -71,11 +71,11 @@ td { } #backbutton { - background-image: url('/img/icons/back.png'); + background-image: url('../img/icons/back.png'); } #forwardbutton { - background-image: url('/img/icons/forward.png'); + background-image: url('../img/icons/forward.png'); } .ui-slider-handle { |