XF 1.3 Responsive Notice Images

taylor_smith

Well-known member
We use a lot of images in our notices, but they aren't currently responsive.

I can add:

Code:
<img src="link" style='width:100%;'border="0"alt="Null">

Problem is, this blows my images up to huge proportion. How would I set a max image size, but keep it responsive otherwise?
 
try this

Code:
<p><a href="http://your-link.com/" target="_blank"><img src="http://your-image.com" style='width:100%;' border="0" alt="Null"></a></p>
 
Top Bottom