Latest Posts

Finding the difference between two arrays in JavaScript can be a bit tricky if you are unfamiliar with the language. Especially if one or both of the arrays contain objects or nested arrays. In this blog post we will look at how to use the JavaScript built-in methods to find the difference between two arrays.

[How To] find difference between two arrays in JavaScript

Dec 4, 2022

Finding the difference between two arrays in JavaScript can be a bit tricky if you are unfamiliar with the language. Especially if one or both of the arrays contain objects or nested arrays. In this blog post we will look at how to use the JavaScript built-in methods to find the difference between two arrays.

CSS media queries are an incredibly useful tool for targeting specific devices, resolutions, and other factors. We will go over steps to fix media query issues

[Fixed] @media query in CSS not working issue

Dec 4, 2022

CSS media queries are an incredibly useful tool for targeting specific devices, resolutions, and other factors. We will go over steps to fix media query issues

CSS spin animations to make your landing page pop. Examples include spin on hovering over buttons, loading icons, etc.

CSS Spin Animation on hover

Dec 3, 2022

CSS spin animations to make your landing page pop. Examples include spin on hovering over buttons, loading icons, etc.

Fixes for :before pseudo elements not working with your CSS. We will go over a checklist on how to do this.

How to fix CSS issues with :before not working

Dec 2, 2022

Fixes for :before pseudo elements not working with your CSS. We will go over a checklist on how to do this.

In this post we go over seven examples on how to capitalize the first letter in JavaScript.

How to capitalize first letter in JavaScript

Dec 1, 2022

In this post we go over seven examples on how to capitalize the first letter in JavaScript.

Position:sticky CSS property is commonly used to create sticky headers or footers. We will go over a few problems and solutions when using this property.

Fixing CSS position sticky not working issues

Nov 30, 2022

Position:sticky CSS property is commonly used to create sticky headers or footers. We will go over a few problems and solutions when using this property.

Slide animations can make your page pop - especially when done correctly and in a performant manner. This post will go over various techniques.

How to make slide animation in CSS

Nov 28, 2022

Slide animations can make your page pop - especially when done correctly and in a performant manner. This post will go over various techniques.

How to fix background images not appearing in CSS. A common issue is images not loading when we are messing around with relative paths. The post will go over various fixes for that!

[Fix] Background image CSS not working fixes

Nov 25, 2022

How to fix background images not appearing in CSS. A common issue is images not loading when we are messing around with relative paths. The post will go over various fixes for that!

The CSS !important rule can force a CSS snippet to work and act as a quick fix. This post will go through a few reasons why using the `!important` CSS keyword might not be working and their fixes.

CSS important Not Working - and Fixes

May 5, 2022

The CSS !important rule can force a CSS snippet to work and act as a quick fix. This post will go through a few reasons why using the `!important` CSS keyword might not be working and their fixes.

A few ways to fix why :after element is not working. 1. We need to check if we are using the right HTML tags, 2. using the content property correctly and 3. Check the browser combatibility.

[Fixed] CSS :after element is not working

Apr 20, 2022

A few ways to fix why :after element is not working. 1. We need to check if we are using the right HTML tags, 2. using the content property correctly and 3. Check the browser combatibility.

A common issue when design web layouts is making sure one element appears in front or behind another element. One way to stack elements is to use the z-index CSS property. We will go over some reasons for z-index is not working as expected and troubleshoot and review solutions that we can apply to.

[5 FIXES] for CSS z-index not working - Updated for 2023

Apr 19, 2022

A common issue when design web layouts is making sure one element appears in front or behind another element. One way to stack elements is to use the z-index CSS property. We will go over some reasons for z-index is not working as expected and troubleshoot and review solutions that we can apply to.

The `setTimeout` function can come in handy for delaying execution. We go over few reasons why the settimeout function is not working - ranging from using parentheses to incorrect scope or this keyword.

Fix JavaScript setTimeout not working

Apr 15, 2022

The `setTimeout` function can come in handy for delaying execution. We go over few reasons why the settimeout function is not working - ranging from using parentheses to incorrect scope or this keyword.