Windows scaling issues for high-DPI devices: Adobe Photoshop & Illustrator
If you have recently bought a 4k monitor, you may have noticed...
21.Apr.2019 | Code Snippets
A quick snipped of code that can be used attach a function to the escape key. Great for adding or removing a class. I always attach this to close a popup, for example.
jQuery(document).on( 'keydown', function ( e ) {
if ( e.keyCode === 27 ) { // ESC
// Do Something...
}
});
Share
If you have recently bought a 4k monitor, you may have noticed...
In the early days (2003), WordPress was essentially a blogging tool and...
For me, the ACF plugin is a standard install for every WordPress...
So, you have just got your new website and you want to get it to the top of search engines....
Handy bit of code you can use in your custom templates that grabs the all the page or post data by ID:...
If you have recently bought a 4k monitor, you may have noticed your Adobe software shrinking to an annoyingly small...