--- skins.old/Timeless/includes/TimelessTemplate.php
+++ skins/Timeless/includes/TimelessTemplate.php
@@ -497,9 +497,10 @@
 			if ( !$wordmarkImage && isset( $logos['wordmark'] ) ) {
 				$wordmarkData = $logos['wordmark'];
 				$wordmarkImage = Html::element( 'img', [
-					'src' => $wordmarkData['src'],
-					'height' => $wordmarkData['height'] ?? null,
-					'width' => $wordmarkData['width'] ?? null,
+					'src'    => $wordmarkData['src'],
+					'height' => $wordmarkData['height' ] ?? null,
+					'width'  => $wordmarkData['width'  ] ?? null,
+					'alt'    => $wordmarkData['alt'    ] ?? null,
 				] );
 			}
 
--- skins.old/Timeless/skin.json
+++ skins/Timeless/skin.json
@@ -91,10 +91,10 @@
 					"media": "screen and (min-width: 851px)"
 				},
 				"resources/screen-desktop-full.less": {
-					"media": "screen and (min-width: 1340px)"
+					"media": "screen and (min-width: 1800px)"
 				},
 				"resources/screen-desktop-mid.less": {
-					"media": "screen and (min-width: 1100px) and (max-width: 1339px)"
+					"media": "screen and (min-width: 1100px) and (max-width: 1799px)"
 				},
 				"resources/screen-desktop-small.less": {
 					"media": "screen and (min-width: 851px) and (max-width: 1099px)"
--- skins.old/Timeless/resources/variables.less
+++ skins/Timeless/resources/variables.less
@@ -15,8 +15,8 @@
 @desktop-small-floor: 851px;
 @desktop-small-width: 1099px;
 @desktop-mid-floor: 1100px;
-@desktop-mid-width: 1339px;
-@desktop-large-floor: 1340px;
+@desktop-mid-width: 1799px;
+@desktop-large-floor: 1800px;
 
 // The max-width for the content
 @content-width: 115em;