diff --git a/apps/theming/lib/controller/themingcontroller.php b/apps/theming/lib/controller/themingcontroller.php
index 6a61293828f2c01be95f6300a8d8f140ee11a541..7619ec4a6b1aafaed13794bf2e6b8d6dd4d3e2b5 100644
--- a/apps/theming/lib/controller/themingcontroller.php
+++ b/apps/theming/lib/controller/themingcontroller.php
@@ -242,12 +242,19 @@ class ThemingController extends Controller {
 				'#header .logo-icon {' .
 				'background-image: url(\'./logo?v='.$cacheBusterValue.'\');' .
 				'background-size: contain;' .
+				'}' . "\n" .
+				'#firstrunwizard .firstrunwizard-header .logo {' .
+				'background-image: url(\'./logo?v='.$cacheBusterValue.'\');' .
+				'background-size: contain;' .
 				'}' . "\n"
 			);
 		}
 		$backgroundLogo = $this->config->getAppValue($this->appName, 'backgroundMime');
 		if($backgroundLogo !== '') {
 			$responseCss .= '#body-login {background-image: url(\'./loginbackground?v='.$cacheBusterValue.'\');}' . "\n";
+			$responseCss .= 'firstrunwizard .firstrunwizard-header {' .
+				'background-image: url(\'./loginbackground?v='.$cacheBusterValue.'\');' .
+			'}' . "\n";
 		}
 		if(Util::invertTextColor($color)) {
 			$responseCss .= '#header .header-appname, #expandDisplayName { color: #000000; }' . "\n";