Using CSS Reset in WordPress Themes

When creating a new WordPress theme from scratch or incorporating an existing theme into your WordPress site, sometimes it helps to start with the basics. And there is nothing more basic than the CSS Reset technique which aligns all […]

Read Article

9 Free online courses to learn CSS 

Much of the world’s business is now being done on the Internet with people using mobiles, tablets,  or laptops looking for news, online shopping, video chats, office documentation, recipes, booking restaurants, reviews of school, locating doctors or even playing games. […]

Read Article

Using CSS Flexbox in Responsive Design

Getting elements of a page to collapse responsively is usually fairly simple. When you need different sections of a page to collapse in an order that’s different from the way they’re ordered in the code, however, things can get complicated. […]

Read Article

Using CSS nth-child Selector

CSS’s nth-child selector is a very useful tool that allows you to single out only certain html elements to style without having to add any class or id tags. The selector targets every element that is the nth child of […]

Read Article

7 Useful CSS Snippets for Developers

CSS is one of those languages that boost the zing of websites or webpages. It’s a pretty easy language to learn and apply and the various updates make it even handier. However, conjuring up some elements from the web to […]

Read Article

7 HTML Tutorials You Should Check Out

HTML5 is the future of web development and provides endless inspiration for web development beginners. Even the giants in this technical field like Google and Apple are working with HTML5 for more advanced web development. But beginners can also learn […]

Read Article

Pros and Cons: One Style Sheet or Many

In CSS, there are generally two schools of thought about apply cascading style sheets to your front-end code. You either section your style sheets off so that your CSS folder looks something like this:

header.css
footer.css
sidebar.css
main.css
social.css

You get the idea. By […]

Read Article