I would like to print the links as plain text that is not underlined or in a different font and color.

I have created a page with my resume, using Dreamweaver CS4 on my iMac (OS x 10.6.6)  You can see the page here: http://www.peterforkes.com/Resume.html


It looks a lot when he is on the screen, but when I print I want links to not be underlined and also display in the same font (and color) of the surrounding text (a link is largely unnecessary on a piece of paper, is it it shows don't not the URL).

So, I created a style sheet called 'print.css' and have this in it:

a: link {}

text-decoration: none;

}

In my html (Resume.html) document, I have this code at the top:

< link href = "_css/Resume.css" rel = "stylesheet" type = "text/css" media = "screen" / > "

< link href = "_css/Print.css" rel = "stylesheet" type = "text/css" media = "print" / > "

Now, things such as the graphics in my document don't print (this is how I want) but links seems to do unexpected things for me.  As I said, when I print page I would that they:

(a) print not with a underscore (which I expect the above code snippet to do).

(b) I want to be the same as the text surrounding the link color (I have links to several places such as < h2 > < h3 > and < p >).

(c) I want the link to have the same font and text size in the text that surrounds it.

Any help is always appreciated.

Peter A. Forkes

You have solved a: link, but you can print the page with the tag in link or visited state if you require cover both.

In http://www.peterforkes.com/_css/Print.css

change

a: link {}
text-decoration: none;
}

TO

a: link, a: visited {}

Color: #333;
text-decoration: none;
}

Tags: Dreamweaver

Similar Questions

Maybe you are looking for