Posts Tagged ‘scripts’

13 Wordpress Plugins you must HAVE

Wednesday, November 7th, 2007

Ten minutes ago I do some updates to my plugins and I think is ok if I tell you what
plugins I use, to a good maintenance of your blog!

[1] Askimet - Askimet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under “Comments”. Is a good plugin but i think the spammers use PROXY and you never escape from this kind of people.

Askimet screenshot

[2] All in One SEO Pack - Optimizes your Wordpress blog for Search Engines: Automatically optimizes your titles for search engines, Generates META tags automatically, Avoids the typical duplicate content found on Wordpress blogs, You can override any title and set any META description and any META keywords you want. This is the plugin which I love!

All In One SEO Pack screenshot

(more…)

Create a simple MENU in CSS

Tuesday, October 30th, 2007

Today we create a simple MENU in CSS. Click here to see the final result!

[1] Let’s to create the CSS:

<style type=”text/css”>
body  {
text-align: left;
background-image: url(”bg.gif”);
}
div     {
width: 100px;
height: 20px;
background-color: #338ce8;
}
div:hover
{
background-color: #085ea6;
}
a       {
color: white;
font-size: 18px;
text-decoration: none;
}
</style>

(more…)

Create Tell A Friend script with HTML & PHP

Saturday, October 27th, 2007

Tell a Friend Printscreen

Final result HERE

Today we learn how to create a TELL A FRIEND script with HTML and PHP. If you want to exercise on my files, click here
to download them!
(more…)