This is yet another theme site, created by Sadish Bala. Visit his WordPress blog at WordPress Rocks

Archive for the 'CSS Tips' Category

How to properly hide the title of your blog?

This is one of the most common customizations that people want to do in their wordpress blog.
They want to hide their site’s title from displaying at their header. It is most probably because their header image already has it as part of the image itself.
Lets take a look at the most common approaches people take, [...]

Filed in CSS Tips, Common Theme Issues, WordPress Tips | 18 responses so far

Font Sizes and Accessibility

Lets take a closer look at the font-size property in CSS.
You might have seen this following piece of code in some theme’s style.css file.
#content h2 { font-size:1.4em;}
or this
#content h2 { font-size:14px;}
or this
#content h2 { font-size:10pt;}
What is the difference between all of these ? which one is better ?
In reality, [...]

Filed in CSS Tips, WordPress Tips | 3 responses so far

Remember to Love / Hate Links

Ever wondered how to define styles for Hyperlinks ?
Well. There are four different selectors for a hyperlink.
You would normally see this at the top of the stylesheet.
a:link {text-decoration:none;color:#ff0000}
a:visited {text-decoration:none;color:#0000ff;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}
The first line defines that normal unvisited links will have ‘no underline’, and will look ‘red’ in color.
The second line says when a link is [...]

Filed in CSS Tips | No responses yet