Copy link to clipboard
Copied
Has the "commit image size" in the properties inspector been removed in a recent update? That was handy for resizing images that are too large right in DW and, upon hitting that button, saving it over the original. Is the only option now to open the image in PS and resizing it?
Copy link to clipboard
Copied
Image editing functions have been removed from the last couple versions.
Here's the official word from Adobe: https://community.adobe.com/t5/dreamweaver/image-optimization-workflows-deprecation-in-dreamweaver/t...
Copy link to clipboard
Copied
Right. Image optimization in DW is deprecated.
1. Dreamweaver is NOT a graphics editor and Photoshop is not code generator. Use the right tool for the job.
2. Resizing images with HTML code is the wrong approach to take because it doesn't reduce file size.
ALWAYS optimize your images for the web beforehand in Photoshop (File > Export > Export As) or similar graphics app. When slight adjustments are needed, use CSS, not HTML code.
For example,
img {max-width: 100%}