View Full Version : Final Touches to Site


Monochrome
12-29-2006, 11:40 AM
...No email form questions this time, I promise!

I'm just polishing up the last pieces of my site, and I'd just like to know the following:

1. I'd like to add an image to my lists. I've tried using the following code:

<ul style="list-style-image: transparentfleur.gif">

<LI><p><i>Blah blah blah blah.</i></p></li>

But it's not working as it is, I just keep the little black dot, instead of my gorgeous fleur de lys that I made with me own hands. (Okay, Paint).

2. Although I have a CSS sheet which requests my unvisited links to have no underline and to be purple, they have underlines and are blue. My code currently is:

A:link
{text-decoration: none; color: #660066}
A:visited
{text-decoration: none; color: #660066}
A:active
{text-decoration: none; color: #000000}
A:hover
{text-decoration: none; color: #000000}

Have I missed anything?

Possibly there'll be a few more questions, but that's all for now!

Thank you in advance!

Idiotic Creation
12-29-2006, 04:33 PM
Hi Monochrome,

Try this:
<ul style="list-style-image: url (transparentfleur.gif);">

Also, if transparentfleur.gif is NOT in the same directory as the page you put this on you will also need to include the path to the image. Like this:
<ul style="list-style-image: url (http://www.yoursite.com/graphics/transparentfleur.gif);">

Good Luck,
David