Windows scaling issues for high-DPI devices: Adobe Photoshop & Illustrator
If you have recently bought a 4k monitor, you may have noticed...
9.Jun.2016 | Code Snippets
Simple bit of jQuery to add an active class to the current navigation item based on the page url.
jQuery("nav a").each(function() {
if (this.href == window.location.href) {
jQuery(this).addClass("active-sidebar");
}
});
Share
If you have recently bought a 4k monitor, you may have noticed...
A quick snipped of code that can be used attach a function...
In the early days (2003), WordPress was essentially a blogging tool and...
A nice solution for a custom WordPress Ajax login form without using a plugin. Place this anywhere you would like...
Need a bespoke WooCommerce site with dynamic content for two types of visitor? For example, this is from a recent...
I came across this when looking for a purpose built, fully customisable calendar - https://fullcalendar.io/ Im just starting to work with...