[How To] find difference between two arrays in JavaScript
Dec 4, 2022Finding 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.
[Fixed] @media query in CSS not working issue
Dec 4, 2022CSS 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 Animation on hover
Dec 3, 2022CSS spin animations to make your landing page pop. Examples include spin on hovering over buttons, loading icons, etc.
How to fix CSS issues with :before not working
Dec 2, 2022Fixes for :before pseudo elements not working with your CSS. We will go over a checklist on how to do this.
How to capitalize first letter in JavaScript
Dec 1, 2022In this post we go over seven examples on how to capitalize the first letter in JavaScript.
Fixing CSS position sticky not working issues
Nov 30, 2022Position: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.
How to make slide animation in CSS
Nov 28, 2022Slide animations can make your page pop - especially when done correctly and in a performant manner. This post will go over various techniques.
[Fix] Background image CSS not working fixes
Nov 25, 2022How 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!
CSS important Not Working - and Fixes
May 5, 2022The 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.
[Fixed] CSS :after element is not working
Apr 20, 2022A 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.
[5 FIXES] for CSS z-index not working - Updated for 2023
Apr 19, 2022A 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.
Fix JavaScript setTimeout not working
Apr 15, 2022The `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.