• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

Links on my website don't work

K

kfoxweatherfox

Flightless Bird
With IE 8 my links *to go from one page to a different page* on my website do
not show up however the website works just fine in chrome, firefox and
earlier versions of IE. Any clues how to fix this?

IF you need the website it is www.kfoxweatherfox.com. On the left hand side
should be a whole list of pages to go to such as knowledge, photos etc.
 
G

G. R. Woodring

Flightless Bird
Date: 4/3/2010 10:20 AM, Author: kfoxweatherfox Wrote:
> With IE 8 my links *to go from one page to a different page* on my website do
> not show up however the website works just fine in chrome, firefox and
> earlier versions of IE. Any clues how to fix this?
>
> IF you need the website it is www.kfoxweatherfox.com. On the left hand side
> should be a whole list of pages to go to such as knowledge, photos etc.


OK, it does seem to display better in Firefox than in IE8, even compatibility mode
doesn't help. The page has 100 errors, not the worst I've seen but bad for such a
simple page. The page has 115 lines just in the head, that would be more than enough
to display what is on the page. The whole page has 1300 lines.

With all of the crap in the head element it still does not identify the page editor
<META NAME="Generator" CONTENT="...">

Find a real web page authoring program and re-write the page, I don't think that one
can be fixed. Notepad would be better than what you used (and entirely adequate for
the complexity of the page).


--
G. R. Woodring
 
T

Twayne

Flightless Bird
In news:E9ED9B7E-65D0-41C6-8ABD-2B898197A8A3@microsoft.com,
kfoxweatherfox <kfoxweatherfox@discussions.microsoft.com>
typed:
> With IE 8 my links *to go from one page to a different
> page* on my website do not show up however the website
> works just fine in chrome, firefox and earlier versions of
> IE. Any clues how to fix this?
>
> IF you need the website it is www.kfoxweatherfox.com. On
> the left hand side should be a whole list of pages to go to
> such as knowledge, photos etc.


Well, for starters, they seem to work OK from here with XP Pro
SP3 and IE8. There are a total of 13 links in the left menu
list.

However, you have apparently written the site using MSO:
--------
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:eek:="urn:schemas-microsoft-com:eek:ffice:eek:ffice"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns="http://www.w3.org/TR/REC-html40">
-------
Using Office to write web sites creates terrible code bloat
that's entirely unnecesary and makes the site very slow to
load where something as simple as you have should literally
"snap" to the screen with the slowest DSL and even be usable
to 56k users, which is is not; it would take forever to load a
page with 56k analog connections.
The "story" MS likes to tell if you call them on it, is
that it's not intended to write web sites for the internet,
but for an intranet - that's why it has all that extraneous
bload in it.

The site needs to be rewritten and re-uploaded. You might be
able to accomplish what you need by simply loading it into
something like N|VU which will remove extraneious code, then
run Tidy on it; that at least would get around a complete
rewrite if it worked.

NVU is free and works well, especially if you aren't good at
HTML. It's a wysiwyg editor and fully capable of doing a site
like yours. You can download it from here. I used it when I
was getting started and it's a great program for the beginner
or even some experts.

HTH,

Twayne`
 
P

PA Bear [MS MVP]

Flightless Bird
Dunno what your mean be "don't work" but Developer-specific resources
include:

MSDN IE Development Forum (post such questions here instead)
http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/threads

Tip: When posting in Developer forums, always include a link to your web
site or test pages in your first post.

IE Developer Center
http://msdn.microsoft.com/en-us/ie/default.aspx

Learn IE8
http://msdn.microsoft.com/en-us/ie/aa740473.aspx

HTML and DHTML Overviews and Tutorials
http://msdn.microsoft.com/en-us/library/ms537623.aspx and

Cascading Style Sheets (CSS)
http://msdn2.microsoft.com/en-us/ie/aa740476.aspx

Expression Web SuperPreview for Internet Explorer (free, stand-alone visual
debugging tool for IE6, IE7, and IE8)
http://www.microsoft.com/downloads/...FamilyID=8e6ac106-525d-45d0-84db-dccff3fae677

Expression Web SuperPreview Release Notes
http://www.microsoft.com/expression/products/Web_SuperPreviewReleaseNotes.aspx

Validators:
http://validator.w3.org/
http://jigsaw.w3.org/css-validator/


kfoxweatherfox wrote:
> With IE 8 my links *to go from one page to a different page* on my website
> do not show up however the website works just fine in chrome, firefox and
> earlier versions of IE. Any clues how to fix this?
>
> IF you need the website it is www.kfoxweatherfox.com. On the left hand
> side
> should be a whole list of pages to go to such as knowledge, photos etc.
 
Top