Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Page only displaying properly in IE
Old 04-03-2009, 06:06 AM Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
I inherited a website, and am working from no knowledge, trying to teach myself webdesign. I want to start a new look from scratch. I have been using dreamweaver, and on trial my early efforts look fine in IE, Chrome and Safari when I am offline. But, I have just tried uploading a trial page to the main site, and I suspect I am missing some important files - flash and layout are only working in IE - can anyone give me any clues where I am going wrong?

The new sample page is www.julianrhind-tutt.co.uk/index1.html
chatterbox is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-03-2009, 06:59 AM Re: Page only displaying properly in IE
TripleMoons's Avatar
Webmaster Talker

Posts: 619
Name: Stephanie Kunder
Location: Hanover, PA
Trades: 0
Your stylesheets are being linked to documents on your computer. Fix that and you should be ok with most of your problems. Validating your code can also help with cross browser problems.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

TripleMoons is offline
Reply With Quote
View Public Profile Visit TripleMoons's homepage!
 
Old 04-03-2009, 07:28 AM Re: Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
Ah, so I just need to work out which extra documents I need to bring over, and it should work? Thank you - I will try that.
chatterbox is offline
Reply With Quote
View Public Profile
 
Old 04-03-2009, 07:39 AM Re: Page only displaying properly in IE
TripleMoons's Avatar
Webmaster Talker

Posts: 619
Name: Stephanie Kunder
Location: Hanover, PA
Trades: 0
What I mean is that in your XHTML instead of this:
Quote:
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="/CSS/Level3_1.css" rel="stylesheet" type="text/css" />
You have this:
Quote:
<link href="file:///C|/Documents and Settings/Kim/Desktop/newJRTsite/style.css" rel="stylesheet" type="text/css" /><link href="file:///C|/Documents and Settings/Kim/Desktop/testsite/CSS/Level3_1.css" rel="stylesheet" type="text/css" />
I would also recommend that you keep your stylesheets in one central location...Either in a CSS folder or loose with your XHTML files.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

TripleMoons is offline
Reply With Quote
View Public Profile Visit TripleMoons's homepage!
 
Old 04-03-2009, 07:58 AM Re: Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
I have followed your advice and the style is now displaying perfectly - thank you! I knew it would be a silly error...

My one remaining problem so far is that I have a flash document which again, plays as it should on loading in IE, but not in the other formats.

Here is the code I am using:


<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/s...rsion=6,0,29,0" width="270" height="80">
<param name="movie" value="images/biker2.swf">
<param name="quality" value="high">
<param name="LOOP" value="false">
<embed src="biker2.swf" width="270" height="80" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>


Is this that I don't have the right plug ins on my own browsers, or do I need to code this differently?

Thanks so much for your help.
chatterbox is offline
Reply With Quote
View Public Profile
 
Old 04-03-2009, 08:05 AM Re: Page only displaying properly in IE
TripleMoons's Avatar
Webmaster Talker

Posts: 619
Name: Stephanie Kunder
Location: Hanover, PA
Trades: 0
You're welcome!

Try this one instead:

Code:
<object
type="application/x-shockwave-flash" data="/images/biker2.swf" 
width="270" height="80" title="">
<param name="movie" value="/images/biker2.swf" />
</object>
Their are a couple ways to do this, but this is the one I like and I know works on IE6, IE7, IE8 & FF. Make sure your swf file is in the images folder (personally I like it loose with the XHTML) and add a title between the quotes for SEO purposes.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Last edited by TripleMoons; 04-03-2009 at 08:22 AM..
TripleMoons is offline
Reply With Quote
View Public Profile Visit TripleMoons's homepage!
 
Old 04-03-2009, 08:17 AM Re: Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
Brilliant! Thank you! I had to add a line to stop it looping indefinitely, but it now works exactly as I envisaged.

Many thanks for you help - you have saved me hours of headscratching and frustration.
chatterbox is offline
Reply With Quote
View Public Profile
 
Old 04-03-2009, 08:21 AM Re: Page only displaying properly in IE
TripleMoons's Avatar
Webmaster Talker

Posts: 619
Name: Stephanie Kunder
Location: Hanover, PA
Trades: 0
The alternative way to stop looping is to add it actually into the Flash document with Stop(); (my preferred method).
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

TripleMoons is offline
Reply With Quote
View Public Profile Visit TripleMoons's homepage!
 
Old 04-03-2009, 08:29 AM Re: Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
Thank you - I did try that before but was clearly getting something wrong. I will leave that for another day, but for now I am very pleased with the result.

Thanks again

chatterbox is offline
Reply With Quote
View Public Profile
 
Old 04-03-2009, 09:03 AM Re: Page only displaying properly in IE
TripleMoons's Avatar
Webmaster Talker

Posts: 619
Name: Stephanie Kunder
Location: Hanover, PA
Trades: 0
When you inserted the Action did you remember to move it to the end of the animation? By default Flash will stick it in the first keyframe.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

TripleMoons is offline
Reply With Quote
View Public Profile Visit TripleMoons's homepage!
 
Old 04-03-2009, 10:41 AM Re: Page only displaying properly in IE
Novice Talker

Posts: 10
Name: rather not
Trades: 0
I don't think I did - I just inserted the action I will check and see if that makes the difference......
chatterbox is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Page only displaying properly in IE
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.05778 seconds with 12 queries