Be A MaxBlogPress Ninja Affiliate To Explode Your Affiliate Marketing Income Almost Overnight!
Powered by MaxBlogPress  
Home » Archive

Articles in the Wordpress Category

Wordpress »

[30 Sep 2008 | No Comment | 1,373 views]
Add an image to RSS feed subscription text link

When you set up a feed subscription on your blog using FeedBurner, they will generate for you a set of HTML codes, which you will copy and paste them onto your text widget. Your blog should then display the following text link which will enable your visitors to subscribe to your feed by clicking on the link.

The above text link is represented by the following FeedBurner HTML codes:
<a href=”http://www.feedburner.com/fb/a/emailverifySubmit? feedId= 2482285& loc=en_US”>Subscribe to my RSS feed by Email</a>
You would have noticed that the above text link does not look professional. …

Wordpress »

[27 Aug 2008 | No Comment | 867 views]
Difference between a post and a page

When you look at your WordPress dashboard, you must be wondering what is the difference between a post and a page.
Post:
Posts are date-driven content where it is always added to the top part of the blog. When another post is published, the earlier post will move down below the new post. Secondly, post, unlike pages are shown in the Archives, Category links and Recent Posts. Thirdly, posts (not pages) are included in syndication feeds whereby a subscriber to your post can read your latest posts.
Pages:
Pages are are …

Wordpress »

[23 Aug 2008 | No Comment | 1,930 views]
Add an image border

To add a side border to an image, you just need to add some CSS codes into your image html codes.
1. Add Thick border:
Below is an image with no side border around it and with the following html codes:<img src=”http://yoursite.com/flowers.jpg” alt=”” width=”50″ height=”50″ />

To add a thick grey border around the image, insert the following CSS code as highlighted in bold below:
<img style=”border: 3px solid #ecf1ef” src=”http://yoursite.com/flowers.jpg” alt=”” width=”50″ height=”50″ />
The end result:

You can adjust the border thickness by changing the border pixels or the border color by changing the …