Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

website in Internet expoler and

Status
Not open for further replies.

theonlymab

Programmer
Jun 5, 2005
5
US
OK i have a problem with my website. When you view the site in Internet Exploer you cannot click on the links liek there not there. But if you view it in FireFox you can. my site is and the way i made the thinks is by doin <map> and etc. Please help me out so people can view my site in IE and FF.
 
Put your map definition in the body of the page - between the <body> </body> tags.

There's always a better way. The fun is trying to find it!
 
get rid of the pointless "no right click" script before you ask for help with a problem. Guessing at the source or having to use the other ways round it is not condusive to any of us bothering.


Chris.

Indifference will be the downfall of mankind, but who cares?
Woo Hoo! the cobblers kids get new shoes.
People Counting Systems

So long, and thanks for all the fish.
 
hey noob.. its called view>source to see html and i fixed it.
 
Code:
hey noob.. its called view>source to see html and i fixed it

Says the guy who's links didn't work in Internet Explorer.
Have a coconut.

For the record, it's good form to post the solution here when you've fixed it so that others may benefit. Was it something to do with the absolute positioning?

Foamcow Heavy Industries - Web design and ranting
Toccoa Games - Day of Defeat gaming community
Target Marketing Communications - Advertising, Direct Marketing and Public Relations
"I'm making time
 
The sad thing about the script is that it doesn't even stop the R-Click menu in FF! (Not that I want a different 750K image as a forced download on every page I visit [smile]

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'If we're supposed to work in Hex, why have we only got A fingers?'
Essex Steam UK for steam enthusiasts
 
No its that Internet Exploer dont like to view the HTML tag stuff like:
<map name="utw">
<area shape="rect" coords="184,160,226,169" a href="index.html">
<area shape="rect" coords="241,160,292,169" a href="/roster.html">
<area shape="rect" coords="304,160,352,169" a href="/forum">
<area shape="rect" coords="365,160,415,169" a href="/events.html">
<area shape="rect" coords="428,160,491,169" a href="/matches.html">
<area shape="rect" coords="501,160,568,169" a href="/sponsors.html">
<area shape="rect" coords="580,160,646,169" a href="/calendar.html">
<area shape="rect" coords="662,160,702,169" a href="/links.html">
</map>

so i took it out and just make a javascrpit rollover buttoms and IE like better.
 
well it does help when you get the syntax correct

Code:
<area shape="rect" coords="662,160,702,169" href="/links.html">

note the lack of the "a" before "href"

Chris.

Indifference will be the downfall of mankind, but who cares?
Woo Hoo! the cobblers kids get new shoes.
People Counting Systems

So long, and thanks for all the fish.
 
theonlymab,

A few suggestions for improvement to your site:

- Choose what standards you want to write to (I suggest XHTML 1.1 Strict), put a complete and valid DOCTYPE in, and validate your page for compliane (don't forget to validate your CSS, too).

- Remove all the outdated, deprecated, and IE-only attributes in favour of CSS.

- Use classes and IDs, and move some of your inline styles into a style sheet (style element, or linked in CSS).

- Get rid of the no-right-click script. It takes extra bytes & time to download, and is not effective (can easily be bypassed, anyone with an ounce of nous will be able to bypass it, steal all your content, and distribute it for free. Muhahaha).

Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
ok
i add this
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

and when i do all my text and images just appear at the top left conner. and if i remove it then it gose were they should go.and what do you mean by

Remove all the outdated, deprecated, and IE-only attributes in favour of CSS.
 
Hmm... I thought it was very clear what I meant. Your code has a lot of old, outdated, and browser specific code. A few examples of these from your code are font elements, and the link, vlink, and text attributes on the body element. These can (and should) be replaced with neat, compact CSS.

Your should really try to keep a DOCTYPE in, and fix the resulting problems with the element positioning. I think it would be a definite learning curve - which can only be a good thing. Read up on XHTML and consider switching to it. You'll be better off for it, I think.

Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top