Customize monitor scaling in 18.04
This question is actually a duplicate of This Question.
The effect I was looking to duplicate from 16.04 is "Text Scaling Factor". This setting can be adjusted using gnome-tweak-tool.
$ sudo apt install gnome-tweak-tool
$ gnome-tweaks
Click on the Fonts tab under Tweaks. The setting is called "Scaling Factor" which I set to 1.25 for my perfect setting.
What you're referring to is called fractional scaling and unfortunately it's not supported yet under 18.04 using default display server Xorg as Ubuntu has decided to move back to this from Wayland used in version 17.10.
At the moment there are a few workarounds, one of which to use Wayland as Ubuntu hasn't dropped it completely. After logging in using Wayland you can enable fractional Scaling experimental-feature by running the following in a terminal:
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
Then open Settings -> Devices -> Displays and now you should have the ability to scale in fractions 100, 125, 150 etc.
You can follow this thread here Enable fractional scaling for Ubuntu 18.04 for more details on this and other workarounds.
Hope you find this answer helpful.