Hyperlinks look awful on Apple Mac - all underlined

J

JOEY

Hello - I recently viewed the 3 websites I make (Frontpage 2003) on an Apple
Mac and they look very unprofessional as all the hyperlinks are underlined -
a look I don't go for! Can anyone help. Thank you.
 
R

Ronx

No-one can help unless they can see the page - or at least the html
forming the page along with any CSS and Javascript being used.

Please give a link to the faulty page.
 
R

Ronx

Looking at http://www.venatoruk.com/

Your links should be similar to:

<td style="width:14%; background:#000048
url(images/template/blue%20lines.gif); border-right:#FFFFFF solid 1px;
border-bottom: none; border-top:none;
text-align:center;vertical-align:middle;
font-face:verdana;font-weight:700;font-size:80%"><a href="index.htm"
style="color:#FFFFFF;text-decoration:none;">Home</a></span></font></td>

If you move all the CSS (contained in the style="..." strings) to an
embedded or external style sheet, this can be simplified to:

<td class="topnav"><a href="index.htm">Home</a>

The CSS would be:
<style type="text/css">
..topnav { width:14%; background:#000048
url(images/template/blue%20lines.gif); border-right:#FFFFFF solid 1px;
border-bottom: none; border-top:none;
text-align:center;vertical-align:middle;
font-face:verdana;font-weight:700;font-size:80%";}
..topnav a {color:#FFFFFF;text-decoration:none;}

There are other problems on the page caused by the negative margins
being used. Try changing the top margin on the second paragraph
instead.
And using the space bar to position words will also give problems since
different browsers will give different sizes to fonts - and users will
resize the fonts anyway. This will, of course, change the page layout.
You also need to set a background colour for the page.

I suggest you preview the pages in FireFox. While FireFox is not the
same as Safari on the Mac, it is very similar, and FireFox does show
most of the problems.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
P

P@tty Ayers

JOEY said:
Hello - I recently viewed the 3 websites I make (Frontpage 2003) on an
Apple
Mac and they look very unprofessional as all the hyperlinks are
underlined -
a look I don't go for! Can anyone help. Thank you.

Underlined hyperlinks are not at all unprofessional. Paying good attention
to usability is very professional, and using conventions that have been
understood by users for many years (like underlining hyperlinks) contributes
a lot to good usability.

I'm not saying that it's never appropriate to show that links are links with
some other indication - but there's definitely nothing unprofessional about
having them underlined, even if you personally don't "go for the look". :)
 
P

P@tty Ayers

JOEY said:
Hello - I recently viewed the 3 websites I make (Frontpage 2003) on an
Apple
Mac and they look very unprofessional as all the hyperlinks are
underlined -
a look I don't go for! Can anyone help. Thank you.

I'd be much more concerned about the unprofessional appearance of scrolling
text. :\
 
J

JOEY

I notice that none of the hyperlinks are underlined on the homepage of your
site www.WebDevBiz.com - it looks tidy and it is obvious where the links are
- that is how I like pages to look and that is my problem with my sites when
they are viewed on Macs.
 
P

P@tty Ayers

I do it differently on each site, and often use underlines. But in any case,
if your code is right, it will work exactly the same on a Mac as on a PC.

--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--


JOEY said:
I notice that none of the hyperlinks are underlined on the homepage of your
site www.WebDevBiz.com - it looks tidy and it is obvious where the links
are
- that is how I like pages to look and that is my problem with my sites
when
they are viewed on Macs.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top