Safari Link Underlining?

Ask a Question related to Mac Applications & Software, Design and Development.

  1. #1

    Default Safari Link Underlining?

    I note that Safari Enhancer can't turn off link underlining in Safari
    1.0. Is there a utility that can do so? Sorry, but I'm not interested
    in starting a lengthy thread on why my life would be better if I liked
    link underlining. Just the facts, please! TIA!

    Davoud

    --
    usenet *at* davidillig *dawt* com
    Davoud Guest

  2. Similar Questions and Discussions

    1. Underlining Text
      I am having a very difficult time figuring out how to underline text in InDesign CS. I have looked it up in Help and searched all over the place and...
    2. can't get rid of underlining
      Comment: I've just updated our web site and the story I just moved higher on the page, is now completely underlined. I can't get rid of it. Any ideas?
    3. Underlining!!!!???
      Is there a way to underline text without having to draw a seperate line under everything. What a pain when you have to underline large quantities of...
    4. Safari: option-click link in new window?
      This must be a dumb question, but I am stumped. The answer may have to do with the Tabs feature, which I have also not figured out. In my older...
    5. Removing 'Link' underline in Safari 1.0
      Is it possible to remove the underline under the links in Safari 1.0? Albert
  3. #2

    Default Re: Safari Link Underlining?

    In article <240620032121383972%see@below.net>, Davoud <see@below.net>
    wrote:
    > I note that Safari Enhancer can't turn off link underlining in Safari
    > 1.0. Is there a utility that can do so? Sorry, but I'm not interested
    > in starting a lengthy thread on why my life would be better if I liked
    > link underlining. Just the facts, please! TIA!
    I had the link underlining turned off as soon as there was a way to do
    so. I just upgraded Safari to 1.0 and it somehow found whatever hidden
    preference Safari Enhancer had toggled; none of the links are
    underlined, but I don't know how that happened (I'm not complaining,
    mind you).

    --
    AF
    "Non Sequitur U has a really, really lousy debate team."
    --artyw raises the bar on rec.sport.baseball
    Alice Faber Guest

  4. #3

    Default Re: Safari Link Underlining?

    Davoud <see@below.net> wrote:
    > I note that Safari Enhancer can't turn off link underlining in Safari
    > 1.0. Is there a utility that can do so? Sorry, but I'm not interested
    > in starting a lengthy thread on why my life would be better if I liked
    > link underlining. Just the facts, please! TIA!
    You don't need an entire third-party program to create one line of CSS
    for you.

    If you would like to disable link underlining in Safari:

    Create a text file. Call it something like user.css and put it
    somewhere appropriate, like ~/Library/Safari. In it, put:

    a { text-decoration: none }

    In Safari, open your Preferences, go to Advanced, and set this file as
    your user stylesheet. Voila, no more link underlines.

    I use mine for some surgical ad blocking.

    --
    Jeremy | [email]jeremy@exit109.com[/email]
    Jeremy Guest

  5. #4

    Default Re: Safari Link Underlining?

    In article <240620032121383972%see@below.net>, Davoud <see@below.net> wrote:
    >I note that Safari Enhancer can't turn off link underlining in Safari
    >1.0. Is there a utility that can do so? Sorry, but I'm not interested
    >in starting a lengthy thread on why my life would be better if I liked
    >link underlining. Just the facts, please! TIA!
    You should be able to change the style sheet for the 'a:link',
    'a:visited', 'a:link:active', and 'a:visited:active' styles without
    resorting to an outside program. But I don't know the exact details.



    --
    Matthew T. Russotto [email]mrussotto@speakeasy.net[/email]
    "Extremism in defense of liberty is no vice, and moderation in pursuit
    of justice is no virtue." But extreme restriction of liberty in pursuit of
    a modicum of security is a very expensive vice.
    Matthew Russotto Guest

  6. #5

    Default Re: Safari Link Underlining?

    Jason Pickard <pickardsnoway@nospam.mindspring.com> writes:
    > Well I talked to the developer of Safari Enhancer today, on AIM
    > and a newer version of that program is due out either today or
    > tomorrow and I asked him just that question, and he said that
    > you will still be able to disable hyperlink underlining.
    You can accomplish this by providing a default CSS style sheet to
    Safari's "Advanced" preferences tab. Here's the one I use to
    disable underlining without hovering:
    > /**
    > * Decoration for links to provide for 'hover' underlining.
    > **/
    >
    > :link, :visited {
    > text-decoration: none;
    > }
    >
    > :link:hover, :visited:hover {
    > text-decoration: underline;
    > }


    --
    Viktor Haag : Software & Information Design : Research In Motion
    +--+
    "At best, 'Nevermind' is an overrated Pixies tribute albmum..."
    Viktor Haag Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139