Archive for the 'Tips' Category

Link to an excellent WordPress resource

Posted by Sadish

I recently found an excellent article, Mastering Your WordPress Theme Hacks and Techniques.
It is a must read for people who wants to learn a lot of tips and tricks.
Enjoy!

Read Full Post »

Comments Off

why my archive pages do not show the full content?

Posted by Sadish

This is one of the frequently asked questions in our support forums. I will try to answer this question here so it can benefit everyone.
This question is also worded like the following questions.

Tag and Category Views Don’t Show Images
Images and archives
How do I expand each individual post for the archive

So, what exactly is the problem?
Archive […]

Read Full Post »

Comments Off

How to upgrade your WordPress Theme for WP 2.3?

Posted by Sadish

I upgraded most of my popular themes to make sure they work with the latest WordPress release 2.3.
but there are people who have customized the theme so much, that they do not want to upgrade their theme with my latest version.
They want to know what exactly I changed for making theme WordPress 2.3 compatible.
The new […]

Read Full Post »

Comments Off

Remember to Love / Hate Links

Posted by Sadish

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 […]

Read Full Post »

Comments Off

Whats going on with the Feed Links ?

Posted by Sadish

With the latest wordpress, the default theme has feed: attached to the normal feed links that start with http://yourwebsite.com/feed/ .
Most of the users complain that when you click on that, it does not work.
Yes, It wont work till all the browser manufacturers support that.
what is it anyway ?
Have you seen a mailto: added to links […]

Read Full Post »

Comments Off

Font sizes and Accessibility

Posted by Sadish

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, […]

Read Full Post »

Comments Off

Working with Pages in WordPress

Posted by Sadish

WordPress allows you to create ‘Pages’ within the wordpress blog.
Anytime you want to write something like an about page / a contact page / an article page, you would use this feature.
Most of our themes displays a list of pages as navigational elements at the top. We use the wp_list_pages() method, so any new page […]

Read Full Post »

Comments Off

How to properly hide the title of your blog?

Posted by Sadish

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, […]

Read Full Post »

Comments Off

Sidebar drops down

Posted by Sadish

Lets take a look at one of the most common problems with the wordpress sites.

The sidebar does not stay on the side, and it falls down to be below the content area.

Read Full Post »

Comments Off