Hyperlink won't work when my iWeb site is published

Joined
Apr 20, 2009
Messages
66
Reaction score
0
Points
6
Location
Newbury, Berkshire, UK
Your Mac's Specs
Macbook Pro 17" 2.0gHz, 250gb HD, 2gb RAM; Macbook 13" 2.0gHz, 500gb HD, 4gb RAM.
Hi,

I have created my company's website using iWeb. I want the logo on the top of each page (which is a jpeg image) to be a hyperlink that points to the homepage. It works in iWeb itself, but when I publish the site and click "Visit Site Now", only one of the page's logo hyperlinks work (Out of 8).
Can anyone help me with this?
FYI, I have not yet published the site on my server. It still needs a few tweaks. Do you think it will work when on the server?
Many thanks,

Nigel
 
Joined
May 31, 2009
Messages
203
Reaction score
3
Points
18
Location
Vancouver, Canada
Your Mac's Specs
15" Unibody (Jan 09)
What URL does the hyperlink attempt to go to?
 
OP
nigelivy
Joined
Apr 20, 2009
Messages
66
Reaction score
0
Points
6
Location
Newbury, Berkshire, UK
Your Mac's Specs
Macbook Pro 17" 2.0gHz, 250gb HD, 2gb RAM; Macbook 13" 2.0gHz, 500gb HD, 4gb RAM.
The ones that don't work don't go any where. They just don't do anything.
The one that does work goes to the correct page...
 
Joined
Feb 26, 2009
Messages
20
Reaction score
1
Points
3
Sounds like your pathing is wrong. Are you using relative or absolute?

Also, on a side note.. Using an image for your company logo link is bad for a few reasons. It's not accessible and does not help with SEO. Try using a text link inside an H1. As that is the most important part of your site. Search engines really like to see text links and order of importance with content. So may I suggest using sprites:

CSS:
Code:
h1#logo {
    margin:0;
}
h1#logo a {
    text-indent:-9999px;
    display:block;
    background: transparent url(../images/logo.gif) no-repeat top center;    
    height:67px;
    width:70px;
}
HTML:
Code:
<h1 id="logo"><a href="default.php">Company Name</a></h1>
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top