diff --git a/ChangeLog b/ChangeLog
index ff43465890b1e6bc8f3c485b94d530ccb97aee71..6b78fe05297299eb96278dfaa720d77915bc2702 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
 
 2010-05-02  Benjamin Mack  <benni@typo3.org>
 
+	* Followup to #14195: Install icons referenced in install.css did not load anymore
 	* Updated NEWS.txt to reflect the breaking changes of Extbase
 	* Fixed bug #14276: tceforms: Title of a record does not use API call to limit the character
 	* Added feature #13379: Introduced a Sprite Icon API to render icons from sprites (Thanks to Thomas Allmer and Steffen Ritter)
diff --git a/typo3/stylesheets/install/install.css b/typo3/stylesheets/install/install.css
index 3fe7d235614a77fed683c4afd770b3dd9c58d626..ca59f70d41c6324b3b164925013f047ee5e6a63b 100644
--- a/typo3/stylesheets/install/install.css
+++ b/typo3/stylesheets/install/install.css
@@ -8,7 +8,7 @@ body {
 }
 
 body.standalone {
-	background: #4f4f4f url('../gfx/installbackground.jpg') repeat-x fixed;
+	background: #4f4f4f url('../../gfx/installbackground.jpg') repeat-x fixed;
 }
 
 h1 {
@@ -16,7 +16,7 @@ h1 {
 }
 
 .standalone h1 {
-	background: url('../gfx/installlogo.gif') no-repeat scroll 0 0 transparent;
+	background: url('../../gfx/installlogo.gif') no-repeat scroll 0 0 transparent;
 	text-indent:-999em;
 	display: block;
 	height: 34px;
@@ -43,7 +43,7 @@ h2 {
 }
 
 .message-warning {
-	background-image: url("../gfx/warning.png");
+	background-image: url("../../gfx/warning.png");
 	background-color: #fbffb3;
 	border-color: #c4b70d;
-}
\ No newline at end of file
+}