Thursday, September 25, 2008

Email Address Completion in Outlook Express


Hi again,
I got an email today asking why address completion had disappeared from Outlook Express. Apparently, the person was writing an email, and when entering the address, the address wasn't completed after a few characters were typed. This is how you can set this up:

  1. In the main toolbar of Outlook Express, choose Tools > Options.

    The Options dialog box opens.

  2. Click the Send tab.

  3. In the Send tab of the dialog box, check the box entitled "Automatically complete e-mail addresses while composing."

  4. Click Apply then OK.

  5. You might have to restart Outlook Express for the changes to take effect.


Hope this helps.


Cheers!


--James

Wednesday, September 24, 2008

CSS Tricks: Part III


Hi again,


I thought I'd add a few more CSS tricks.


Trick 1: Highlighting links on hover or when clicked



a:hover, a:active {
color: #FF0000;
background-color: #FFFF00;
}


Trick 2: Stacking headings (to get rid of unwanted space)


h1, h2 {margin-top: 3em;}
h1+h2 {margin-top: -3em;}


Trick 3: Using an image as a bullet


ul {
list-style-image: url(yourimage.gif);
}


More coming later!


--James

Tuesday, September 16, 2008

CSS Tricks: Part II

Hi,

Here are some more CSS tricks to add to your collection.

Trick 1: A background image behind text






Trick 2: Add color to a drop down menu





It should look like this:








Trick 3: Capitalize the first letter in each paragraph


Place this between the tags.






Then place this at the beginning of each new paragraph.





It should look like this:


Have fun!


--James

Thursday, September 4, 2008

CSS Tricks: Part I

Hi all,

I thought I'd share a few CSS tricks with you. Just for fun. No questions asked.

Trick 1: Removing underlines


a:link a:visited a:hover a:active {
text-decoration: none;
}
Trick 2: Adding a dotted underline

a {
text-decoration: none;
border-bottom: 1px dotted #000000;
}
Trick 3: Removing indentation in lists

ul {
padding-left: 1em;
margin-left: 0px;
}

More to come soon.


--James