CSS Basics
What is CSS? CSS stands for Cascading Style Sheets. A style defines how an HTML element is displayed. Style information can be stored: In the header of a given HTML page (Internal Style) Within a given...
View ArticleCSS Syntax
Selectors, properties & values CSS syntax is made up of three parts: selector (often the HTML element you wish to style) property (the attribute you wish to change eg. background colour) value (eg....
View ArticleCSS Usage
Overview There are three ways of inserting style information: In the header of a given HTML page (Internal Style) Within a given tag (Inline Style) In an separate file which is then linked to the HTML...
View ArticleCSS Selectors
In CSS, pattern matching rules determine which style rules apply to elements in the document tree. These patterns are called selectors and may range from simple element names to complex patterns. If...
View ArticleCategory Specific Feed Lists in WordPress
On larger WordPress blogs, it make sense to offer category specific news feeds so that users can subscribe to just the topics that they are interested in. There are already a couple of solutions out...
View Article