Change image element size on mobile

So i have a image element on my section that it’s used to show a portrait. But i wish to scale it’s zie down on mobile, any css or tips i can get to properly set this up ? Thanks !

Hi Alexandru,

Thank you for writing in, you can add something like the custom CSS below on your Image element’s Element CSS area.

@media (max-width: 767px) {
	$el.x-image {
	   max-width: 300px;
	}
}

Hope it helps,
Cheers!

1 Like

It did thank you !

You’re more than welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.