Creating a WordPress theme Part 2 – Section dividing & theme naming
This series is about how to create and develop a WordPress blog theme in 2021 using the correct methods and techniques. This Part 2 is splitting the theme into different…
This series is about how to create and develop a WordPress blog theme in 2021 using the correct methods and techniques. This Part 2 is splitting the theme into different…
This series is about how to create and develop a WordPress blog theme in 2021 using the correct methods and techniques. Part 1 is the installing and setup of WordPress…
How to have a fully responsive, collapsable side nav bar made with Bootstrap that will resize the page upon collapsing. For this you will need jQuery. The included CSS styling…
Turning bootstrap cards into selectable radio buttons with active states using jQuery. CodePen example. To do this you will need Bootstrap and jQuery. Function to unselect (uncheck) all of the…
How to load a javascript file only once the page has finished loading. This is done with a document event listener that will run when the content has been fully…
How to make calls without Ajax in vanilla Javascript. Using Ajax requires jQuery, whilst it is a convenience, including the whole jQuery library for just Ajax is overboard. Here is…
A live and active time and date with vanilla Javascript. CodePen example. Start by setting variables for the date string: var today = new Date(); var day = today.getDate(); var…
A guide on installing and setting up a DayZ Standalone server with the new Namalsk map by using SteamCMD. This guide is made with a Windows Server 2019 VPS on Vultr…
Changing a progress bar colour based on what value its progress is at. This is done using jQuery and the default Bootstrap colour classes. CodePen example. The jQuery: $(document).ready(function ()…
How to do a jQuery autocomplete input element from an array source. autocomplete gives the ability to find and select from a compiled list of values, helping aid searching. CodePen…