Articles Archive for August 2008
Wordpress »
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 »
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 …
Wordpress »
There is a simple fix for “HTTP error” message when you insert image into your post while working with wp2.5 version.
It involves inserting the following script into your .htaccess file.
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
Do not be frighten by this “.htaccess file” as it is really very easy to insert the script fix. Below are the steps:
Step 1. Before you begin to add the additional script into the .htaccess file, download (use a FTP program) a copy of the existing .htaccess file from your server into your computer as a backup. …

