Articles
A reference for CSS
All of the properties, pseudo-classes, etc that can be called with CSS: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference?redirectlocale=en-US&redirectslug=CSS%2FCSS_Reference
Support PHP in external Javascript
The Problem Have you ever tried to write code like this? external.js function test_javascript() { console.log( 'Currently at page: <?php echo $_SERVER['SCRIPT_URI'] ?>' ); } index.php <script src="external.js"></script> Most of the time, you will...
Help! My WordPress is corrupted?!
If you ever find yourself in a situation where your website appears hacked, corrupt, or odd - do not despair! Here are some ideas that you could try to repair, troubleshoot, etc. Good luck! Repair Database WordPress offers a repair utility, but it is typically...
Awesome WordPress plugins for your site
As of this writing, there are over 25,000 plugins developed by the community for use with WordPress. These plugins range from the simplest single operations to the largest multi-feature systems. This article seeks to cover some plugins that are useful, but not...
Working with CSS floats
In the land of CSS, the property 'float' is typically used to help wrap text around images. It can also be used to layout other HTML elements to make webpages work across different resolutions and devices. However, as many web developers have found out, there are...
Restrict access to web server folders
Ever want to prevent users from accessing specific areas of your site? You can do so through software; for instance, WordPress has a login mechanism for users. But let's say that you want to prevent the general public from accessing a specific area of the site...