I would like to print links as regular text i.e. not underlined or in a different font and color.

I have created a page with my resumé, using Dreamweaver CS4 on my iMac (running OS X 10.6.6).  You can see the page here: http://www.peterforkes.com/Resume.html
It looks great when it is on the screen, but when I print it I would like the links to not be underlined and also to be displayed in the same font (and color) of the text surrounding it (a link is largely useless on a piece of paper, if it it not showing the URL).
So, I created a stylesheet called "print.css" and have this in it:
a:link {
text-decoration: none;
In my html document (Resume.html)  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 do not print out (this is how I want it) but links seesm to be doing unexpected things for me.  As I mentioned, when I print the page I would like them to:
a) not print with an underline (which I would expect the code snippet shown above to do).
b) I would like the link color to be the same as the surrounding text (I have links in several places, such as in <h2>, <h3> and <p>).
c) I would like the link to have the same font and text size as the surrounding text.
Any help is always appreciated.
Peter A. Forkes

You've solved it for a:link but you may print the page with the <a> tag in link or visited state so you need to 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;

Similar Messages

  • I would like to print my Pages document on Matte Photo Paper

    I would like to print my Pages document on Matte Photo Paper which is in the rear feeder of my Canon Pixma MX882 printer. The print function in Pages/Yosemite does not give me that option.The only options are to print on plain paper from the cassette. When I print images from iPhoto, I have more paper options. When I try to convert the doc to a jpeg, with Graphic Converter so I can drop it in iPhoto, the result is very blurred almost unreadable.

    Have you gone to Canon's website and downloaded the very latest Printer Driver for your Model?
    Also have you looked amongst the paper handling options in your Print dialogue for the rear feeder option.
    What is stopping you putting the high quality paper in your regular paper cassette?
    Peter
    Here is the link for the Yosemite driver:
    http://www.usa.canon.com/cusa/support/consumer/printers_multifunction/pixma_mx_s eries/pixma_mx882#DriversAndSoftware

  • I would like to open links in a new window but cannot find where to put the setting. Have unchecked the "Open new windows in new tab instead" box in the Options dialog box.

    When I click a link on a webpage or other software, I would like for it to open in a completely new window.

    You can hold the Shift key and click the left mouse button a link to open that link in a new window.
    The setting in Tools > Options > Tabs is only for links that specify a target window and you can divert such a link to a new tab instead.

  • I have an IPAD 2 and would like to print to my mobile printer HP 470.  Can I do this through the cable? What do I need to do?

    I have an IPAD 2 and would like to print to my mobile printer HP 470.  Can I use the patch cable?  What do I need to do?

    iOS AirPrint Printers  http://support.apple.com/kb/HT4356
    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
     Cheers, Tom

  • TS3147 I would like to print pdf architectural plans in the scale they were intended how can I do this?

    I would like to print architectural plans to scale from a pdf.  How can I do this?  Even just a section of the plan.
    thank-you

    Did you try Google?
    https://www.google.com/search?q=print+architectural+plans

  • I have a Mac and use an EPSON NX510 printer. I would like my printer to only print in black ink unless I otherwise indicate. How do I do this?

    I have a Mac and use an EPSON NX510 printer. I would like to print in black ink only and cannot locate how to do this?

    You usually find an option to print in black and white or gray scale in the settings of your printer that come up  when you choose "print" in the file menu of the program you are using at the time.
    BUT, if what you want to do is print with only black ink because you are out of ink in one of the color cartridges, that is usually not possible. For some reason I can't remember, printers makers prevent the use of the printer as soon as one of the color cartridges is empty.

  • I would like to print a page from a book bought on Amazon.  How can I do that?

    Dear Support Community:
    I bought a digital book on Amazon.com, and downloaded it to my iPad.  It is in the KINDLE app.  I would like to print a page or two of it on the printer connected to my lap top.  Am having a devil of a time.  can anyone help?   I think I can do it, but just don't know how. Please help?
    thanks.
    Gary

    I've never tried to print a book page directly, so don't know if it is possible.
    But you could do this.
    How to take a screenshot on your iPad
    http://www.imore.com/screenshot-ipad
    And then print the pic.
     Cheers, Tom

  • I would like to print out the icon and title of each of my apps to another document for printing and sharing within my family

    I would like to print out the icon and title of each of my IOS apps to another document for printing and sharing within my family.  My son has my old iPod touch so I erased it so he could put whatever games he wants to play on that I used to play with.  It is difficult to download every game at one time because there is too much to download at one time.  I have many hundreds of apps.  One way I found was to create a screen grab of each page in iTunes  then open it in Preview contact sheet but that is really tiny unreadable image of each screen.  I also tried importing a screen shot of the contact sheet into Paint 2 and magnifying it on several pages but that is really blurry.  The ideal solution would be to import the icon and text to another app or to provide a print list of apps solution within iTunes.

    Create iPad screen shots by briefly pressing the home and on/off buttons together.  You will hear a shutter click sound and find a screen shot on your iPad's Camera Roll.  You can then print these screen shots as you would any iPad photos.
    UPDATE: I assumed you had an iPad.  Hopefully your iOS device does have an on/off and home button and is capable of producing screen shots.

  • Swing , would like to print hello inside of the frame, how?

    i would like to print hello inside of the frame, how can i do that?
    import java.awt.*;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import java.awt.Toolkit;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class Main extends JPanel
    implements ActionListener {
    JButton button;
    public Main() {
    super(new BorderLayout());
    button = new JButton("Click Me");
    button.setPreferredSize(new Dimension(200, 80));
    add(button, BorderLayout.CENTER);
    button.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
         System.out.println("hello");
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Create and set up the window.
    JFrame frame = new JFrame("welcome");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    JComponent newContentPane = new Main();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Recommended lessons in this context: [Using Layout Managers|http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html] and [Painting in AWT and Swing|http://java.sun.com/products/jfc/tsc/articles/painting/]
    If the second lesson is a little heavy, look at this light version: [Performing Custom Painting|http://java.sun.com/docs/books/tutorial/uiswing/painting/index.html]
    Edited by: Andre_Uhres on Aug 24, 2008 8:34 AM

  • I have an Iphone 4S and I would like to print my text messages, including the thread and the Imessage date and time stamps.  How would I do this?

    I have an Iphone 4S and I would like to print my text messages, including the thread and the Imessage date and time stamps.  How would I do this?

    settings - message - imessage - OFF

  • I would like to print a four sided programme, but am having trouble finding out how to organise the sections onto a 17  by 11 paper with the sections in the right order. Any help?

    I would like to print a four sided programme, but am having trouble finding out how to organise the sections onto a 17  by 11 paper with the sections in the right order. Any help?

    If all you are going to do is print double sided and them make
    a single fold reducing the page to 8 1/2 x 11, one side of the
    original 17 x 11 page will be page 4 on the left as you hold
    the page facing you and page 1 on the right, reverse side
    should be printed so top is same as top on the the first side
    and will be page 2 to the left and page 3 to the right. Pick
    up the double sided document with pages 2 and 3 facing you, fold
    left edge to meet right edge; you should now have fold on the left
    with page 1 facing up toward you, turn the page as you normally
    would and pages 2 & 3 should be in order, and one more turn brings
    you to page 4 and the fold should know be on the right. I hope this
    explains clearly enough - if not, post back and some one should
    join in with a better explanation.

  • I would like to print addresses on envelopes from my ipad contact list

    I would like to print addresses plus my return address on envelopes using ipad contact list.  I do not have a wireless printer so would have to export file to be able to use in some way on my pc.  Is  this possible?  Thanks  Pam

    Hello FeyQueen,
    You may be able to remove existing game data by via the following:
    On your iOS device, go to Settings > iCloud, then tap Storage & Backup.
    On your Mac, go to Apple () menu > System Preferences, click iCloud, then click Manage.
    On your Windows computer:
    Windows 8.1: Go to the Start screen and click the down arrow in the lower-left corner. Click the iCloud app, then click Manage.
    Windows 8: Go to the Start screen and click the iCloud tile, then click Manage.
    Windows 7: Choose Start menu > All Programs > iCloud > iCloud, then click Manage.
    Once in the 'Manage' dialog, look for the name or icon of the affected game. If present, you should be able to delete any data the game has saved to your iCloud account.
    Managing your iCloud storage
    http://support.apple.com/kb/HT4847
    Cheers,
    Allen

  • Would like to print from laptop to printer at home. Printer is ethernet connected to NetGear Router

    HP PAvilion dv1000, Windows XP
    Would like to print from laptop to printer at home.  Printer is ethernet connected to NetGear Router.
    I had been able to print wirelessly from laptop to HP 7310 Officejet all-in-one, but now all I get is "document failed to print" message.  I can get documents to print on this printer using my smart phone, but not the laptop.
    I have used "find printer" button on print screen and can see the printer to select.
    Any suggestions?
    This question was solved.
    View Solution.

    Figured it out after looking at a few other posts...
    Configured port to printer IP Address and now it is printing perfectly.
    Thanks for having posts out there to review.

  • My wife has an original iPad and would like to print her contact list.  How can we do this?

    my wife has an original iPad and would like to print her contact list.  How can we do this?
    [email protected]

    Make groups of contacts in your Address Book and select the option to sync only selected groups to each phone.
    This explains how to create groups:  Mac 101: Address Book, http://support.apple.com/kb/ht2486

  • I would like to print shipping labels (Avery 8163) with same info in each label.

    I would like to print mailing labels (Avery 8163) with the same info in each label. Where do I get the template & how do I duplicate address info into all 10 boxes?

    You can get the label templates from Avery. You can use a tempalte for Word. In Pages check show Layout in the View menu to see the grid.
    Create one label > Group the objects > Cmd + Drag to duplicate the label

Maybe you are looking for

  • WDDOMODIFY is getting called twice.

    Hi, I am facing a problem where wddomodify is getting called twice when I am selecting a value from a drop down. While for other drop downs on the same view WDDOMODIFY is not even getting called. I would appreciate, if anyone of you can provide any i

  • Mail service POC - connecting to GMAIL gives error "service is not available"

    From webcenter Dev Guide, I followed steps to connect to gmail server using webcenter mail service. Mail service connection info: imap server : imap.gmail.com imap port : 993 smtp server : smtp.gmail.com smtp port : 465 imap secured : true smtp secur

  • Change relations to new business partner?

    Hi, Hope you can give some useful tips regarding the following: We have an account manager (Business Partner type: Person) who is the Responsible Salesrepresentative for a large number of customers (also business partners). This account manager is be

  • Desktop Icons are not the correct icons

    Here's an image with the issue: The icons with the orange are supposed to be the hard drive icons. Anyone come across this when internal hard drives now have a different icon? Thanks, Robert.

  • SCHEDULING AGREEMENT AS FOLLOW-ON DOCUMENT

    Hello, I have an SRM rel 4.0. integrated with R/3. I have implemented a Plan driven procurement scenarious with auctions and Bid invitations. I would like to know if is it possible generate, as follow on document a Scheduling Agreement instead of a C