Six ways to use CSS with HTML

Cascading style sheets or CSS for short were introduced to customize the styling and layout of your HTML. Since 1996 they have become an integral part of all websites and a necessity for making your page aesthetically pleasing. CSS was […]

Read Article

Drupal 8 Won’t Change The CMS Landscape

Back when content management systems were taking over the web landscape slowly but surely, the fight looked like a war with 3 major participants. Drupal, Joomla, and WordPress were all about equal and they all had their own merits. However, […]

Read Article

Changing and Using CSS With Drupal

Whether your Drupal theme is 6 or 7, or you’re using some of the more popular themes like Zen, Skeleton, TheCompany, or FontFolio – Changing the CSS in your theme can be a bit confusing at first. Drupal is […]

Read Article

Using :after :before With Position Absolute

When CSS3 was released, the ability to place text or images after or before HTML items dynamically with CSS was a major new advantage. For instance:

.div:before {
content: “text”;
}

That code will place the word ‘text’ before a div. That […]

Read Article