seamlessdigital
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress image issue on v5.9.1With the new v5.9.3 it seems to have been fixed. Shame it took them months to do this simple change
- This reply was modified 4 years, 1 month ago by seamlessdigital.
Forum: Fixing WordPress
In reply to: WordPress image issue on v5.9.1@alanfuller Thanks! It’s been very frustrating day for me. I’ve added a patch on all of my wordpress sites but ofc this is not the best solution. Hopefully it will be fixed with the next wordpress release
Forum: Fixing WordPress
In reply to: WordPress image issue on v5.9.1@jlorenzetti I wish that was the case but after auto-updating sites to 5.9.2 issue still remains!! broke again tons of sites.. what a disaster. They don’t bother fixing a single piece of useless css code even after 5 bug reports. I’ll consider moving away from wordpress if this is NOT resolved with the next release!
@wordpress support, as explained please remove this code
html :where(img){ height: auto; max-width: 100% }fromwp-includes/css/dist/block-library/style.min.css.THANKS.Forum: Fixing WordPress
In reply to: WordPress image issue on v5.9.1@see0also Exactly my point. WordPress itself should not be interfering with css. WordPress support please remove that piece of code you’ve added on 5.9.1 on your next release (
html :where(img){ height: auto; max-width: 100% }). If it remains, it will keep causing a mess especially on legacy sites and we cannot afford maintaining all of them for this. We might have to stop all auto-updates. Thanks.Forum: Fixing WordPress
In reply to: WordPress image issue on v5.9.1Well I don’t think WordPress itself should be interfering with normalising the css. So I had some images like this:
<img src="whatever.jpg" height="50" alt="whatever" />When WordPress was updated to v5.9.1, that height value was ignored and zoomed to original size. If I did this however:<img src="whatever.jpg" alt="whatever" style="height: 50px;" />it worked fine as before.