CSS Text Tips

Here are a few basic CSS tips that you should learn if you are new to using stylesheets.

Basic Mouseover Color Links:

a:link, a:visited {
     text-decoration: underline;
     color: #0000FF;
}

a:hover, a:active {
     text-decoration: none;
     color: #DC143C;
}

Note: Links should be specified in the following order:

  • link
  • visited
  • hover
  • active

Underline Effect for Headings:

h1 {
     font:  Verdana, Arial, sans-serif;
     padding: 3px;
     border-bottom: 1px solid #000000;
}

Basic Indent For Paragraphs:

.indent {
     padding-left: 20px;
}

In the html code you would simply use the paragraph tag like this:

<p class="indent">This is my paragraph text.</p>

Use Images For List Bullets:

ul {
     list-style-images: url(image_name.gif);
}

This should make all of the li tags inherit the setting.

Deer Park Update Option

It looks like the Deer Park Check For Updates option now works. However you have to change the url that it uses to check for the latest version. You can use the about:config url to change the setting: app.update.url. The url to use is: (more…)

Firefox 1.5 – It’s Coming Soon

2005 will be the year of the new browser wars for sure. Although Apple’s Safari RSS did not seem much more than a few bug fixes and RSS support, the announcement of IE7 was a good sign of the impending battles between all the browsers. However Firefox 1.5 is coming closer to beta, as you can see it is already in Alpha 2.

Deer Park Alpha 2

If you decide to try out Deer Park, make sure you disable the ImageZoom extension as it has a bug that causes DP to render some text underneath the status bar. Other than that Deer Park is pretty good at disabling extensions that are not compatible.

If you just can’t live without a theme, according to this post on the Mozillazine forums, there is a version of Qute already ported for Deer Park.