diff --git a/bin/css/style.css b/bin/css/style.css
index 27c8146ff155d93be42a084094325f4b3fb7e08e..5cc013633102d3aa92f8ab310254c48e300e2702 100644
--- a/bin/css/style.css
+++ b/bin/css/style.css
@@ -151,11 +151,16 @@ small, .font_small, .font-small {
     font-size: 0.75em;
 }
 
+/*
+ 1. Quiqqer sets the width and height HTML attributes on each <img> element (smarty function.image.php).
+    Therefore, we need to set the width and height properties to 'auto'
+    to avoid images being displayed at a reduced size.
+*/
 img {
     max-height: 100%;
     max-width: 100%;
-    height: auto;
-    width: auto;
+    height: auto; /* 1 */
+    width: auto; /* 1 */
 }
 
 .html5tooltip-box {