Using Photoshop to create cool images is great and all but what about when you need dynamic content? I was working on a website recently that had some really cool…
Read More
::first-letter is another nice pseudo element which allows you to style the first letter in an element without needing to use additional HTML such as a tag. This method works…
Read More
Adding a line under text is generally done with basic text underline formatting. However, it doesn't allow you to add any margin or padding between the text and line. This…
Read More
There are so many different methods when targeting elements in CSS. The most widely used are the class "." and id "#" selectors. Sometimes you may need to target based…
Read More
When linking a telephone number on your website using the a href tag you will notice inconstant styles from mobile devices. For example on a desktop or laptop the number…
Read More
Today I was on the forum and wanted to add in a link to our GitHub and GitLab accounts next to the social icons. We use a theme from IPS…
Read More
After creating another post on absolute position footers we decided to add a quick post on how to create a sticky footer. html{ position: relative; min-height:100%; } body{ margin:0 0…
Read More
How do you get a footer to stay at the bottom of a Web page when the content of the page is too short? There are a few options. Option…
Read More
This is an example of how to select a child of a parent element using CSS. Most of the time you can add a class or id to the element…
Read More
Last week we wrote a blog post on how to disable right click functionality on an entire website. Since then we've had a few requests on how you would apply…
Read More