Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:AylhrIMGHD: Difference between revisions

Template page
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 13: Line 13:
@media only screen and (max-width: 600px) {
@media only screen and (max-width: 600px) {
     .res-img img {
     .res-img img {
         max-width: 80%; /* Adjust this value as needed */
         max-width: 60%; /* Adjust this value as needed */
         height: auto;
         height: auto;
     }
     }
}
}
</style>
</style>

Revision as of 04:28, 30 January 2025

<style> /* Default styles for larger screens */ .res-img img {

   max-width: 100%;
   height: auto;

}

/* Styles for mobile devices */ @media only screen and (max-width: 600px) {

   .res-img img {
       max-width: 60%; /* Adjust this value as needed */
       height: auto;
   }

} </style>