ElkArte Community

Project Support => Support => Topic started by: Jorin on March 29, 2018, 01:03:48 am

Title: images too big for mobile devices
Post by: Jorin on March 29, 2018, 01:03:48 am
Doesn't look too good. Is there any way to prevent this from happening? Can I set a maximum size for images on mobile devices which is the actual mobile device's screen resolution?
Title: Re: images too big for mobile devices
Post by: badmonkey on March 29, 2018, 08:44:10 am
in custom.css:

Code: [Select]
img
{
max-width: 98%;
height: auto;
}



You can adjust the max width to fit your taste.   ;)