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 [...]
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 [...]
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 [...]
Continue reading about HTTP error on insert image with WP2.5 version