diff --git a/public/Assets/CSS/Dark.css b/public/Assets/CSS/Dark.css index 37508a2..a452ef6 100644 --- a/public/Assets/CSS/Dark.css +++ b/public/Assets/CSS/Dark.css @@ -9,7 +9,7 @@ a:active { } body { - background-image: url(../Media/BG/0.gif); + background-image: url(/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/0.gif); background-size: cover; margin: 0; height: 100%; diff --git a/public/Assets/JS/RandomGIF.js b/public/Assets/JS/RandomGIF.js index f802425..c0a0a10 100644 --- a/public/Assets/JS/RandomGIF.js +++ b/public/Assets/JS/RandomGIF.js @@ -1,6 +1,6 @@ function RandomGIF() { GifID = Math.floor((Math.random() * 25)/2); - GifURL = "Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif"; + GifURL = "/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif"; document.body.style.backgroundImage = "url(" + GifURL + ")"; }