Most sites are fine at either 85% or 100% but some would really benefit from a 90% or 95% zoom so I'm not sure why that's not an option, it's so simple.
This still doesnt let you set the zoom at 90%, only 75% - 85% - 100%Change Websites settings in Safari on Mac
https://support.apple.com/guide/safari/ibrwe2159f50/mac
"Page Zoom
Choose a percentage of zoom to make text and images on the site easier to see."
body {
zoom: 90%;
}
Settings > Advanced > Style sheet
and point to the previously saved css file.Does it apply to all sites or can you set it to a specific website?Create a new text file with the file extension "css". (like "defaultzoom.css")
Paste:
In Safari go toCSS:body { zoom: 90%; }
Settings > Advanced > Style sheet
and point to the previously saved css file.
Done
Unfortunately that is the new "100%" for all websites.Does it apply to all sites or can you set it to a specific website?
Not perfect but it's better than nothing. Thank you!Unfortunately that is the new "100%" for all websites.
Oh you are correct. I dismissed this method in the past as it always showed [50 %] in Safari after creating custom values.In will not appear as 90% in Websites, (...)
The values set in Safari > Settings > Websites are saved in ~/Library/Safari/PerSiteZoomPreferences.plist and can be modified to 90% by replacing the set value with 0,9.
I use PlistEdit Pro https://www.fatcatsoftware.com/plisteditpro/Excuse my ignorance but is there a better way of editing the .plist file other than in text editor as it doesn't show clearly?
/usr/libexec/PlistBuddy -c "Print" ~/Library/Safari/PerSiteZoomPreferences.plist
/usr/libexec/PlistBuddy -c "Print :MapOfHostnamesToZoomPreferences:forums.macrumors.com:PageZoomFactor" ~/Library/Safari/PerSiteZoomPreferences.plist
/usr/libexec/PlistBuddy -c "Set :MapOfHostnamesToZoomPreferences:forums.macrumors.com:PageZoomFactor 0,9" ~/Library/Safari/PerSiteZoomPreferences.plist