diff --git a/public/API/queries/imgproxy.php b/public/API/queries/imgproxy.php
index aa23221165375ba5a181768dab714af33356c635..f1d3e036b4284a315b53e64fadd485b4a895dc93 100644
--- a/public/API/queries/imgproxy.php
+++ b/public/API/queries/imgproxy.php
@@ -3,7 +3,7 @@
 function imgproxy($imageURL) {
         require "./lib/config.php";
         $encodedUrl = rtrim(strtr(base64_encode($imageURL), '+/', '-_'), '=');
-        $path = "/rs:fit:0:512:1/g:no/{$encodedUrl}.webp";
+        $path = "/rs:fit:0:$defaultImageWidth:1/g:no/{$encodedUrl}.webp";
 
         $signature = rtrim(strtr(base64_encode(hash_hmac('sha256', $imgProxySalt.$path, $imgProxyKey, true)), '+/', '-_'), '=');
         return $imgProxyUrl . "/" . $signature . $path;
diff --git a/public/API/queries/skills.php b/public/API/queries/skills.php
index db8fd106fa0fb9dc587b6ff1a67d8ed1d36d1d7a..480a999c5f57b5f9434d554847ba4e4170d44564 100644
--- a/public/API/queries/skills.php
+++ b/public/API/queries/skills.php
@@ -29,7 +29,7 @@ function getSkills() {
                 // Get the actual presigned-url
                 $downloadURL =  (string)  $presignedRequest->getUri();
                 $encodedUrl = rtrim(strtr(base64_encode($downloadURL), '+/', '-_'), '=');
-                $path = "/rs:fit:0:80:1/g:no/{$encodedUrl}.webp";
+                $path = "/rs:fit:0:$defaultSkillsWidth:1/g:no/{$encodedUrl}.webp";
 
                 $signature = rtrim(strtr(base64_encode(hash_hmac('sha256', $imgProxySalt.$path, $imgProxyKey, true)), '+/', '-_'), '=');
                 array_push($response, $imgProxyUrl . "/" . $signature . $path);