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.

HTML Forum


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



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 11-10-2007, 07:14 AM IE vs Firefox
Novice Talker

Posts: 13
Name: Elena
Trades: 0
I started creating websites. Always used to work under IE. Firefox becomes more popular so I decided to install it and see if something is going to look different in Firefox. And it does! Is there any information out there to learn these differences and how to fix it? For example, "bgrepeat: no-repeat;" in IE works, Firefox ignores it. I have Java script based calendar (http://www.fishbigusa.com/prices.html), which perfectly works in IE and returnes ERROR in Firefox, etc.
Appreciate any help!
Elena
smelena is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-10-2007, 11:26 AM Re: IE vs Firefox
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Designing for IE only is a bit myopic because it does so much WRONG.
The best source for the solutions to IE's many bugs is www.positioniseverything.net

bgrepeat is NOT valid CSS , the proper CSS would be background-repeat: no-repeat, better yet use background: url(path/filename) no-repeat;

The JS you're using for IE is most likely outdated and not using the current DOM, so it breaks in any other browser.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

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


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

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-10-2007, 12:53 PM Re: IE vs Firefox
Rickzkm's Avatar
Average Talker

Posts: 15
Location: UK
Trades: 0
Hi,

Firstly congrats on installing Firefox, good step!

The problem between IE and FF is simple. If you build your site using any valid XHTML standard it will work fine in Firefox, IE7, Opera, Netscape, Safari any many others.

There are exceptions like IE6 which does not render Xhtml well and you need to apply "css hacks" to make it run. This is quite simple. You can add html condition:

<!--[if IE]>
<link href="IE.css" rel="stylesheet" type="text/css" />
<![endif]-->

and make individual corrections in CSS for this stylesheet on this browser

you can even separate this

<!--[if IE6]>
<link href="IE6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE7]>
<link href="IE7.css" rel="stylesheet" type="text/css" />
<![endif]-->

Now, bgrepeat: no-repeat; is not valid Xhtml tag. If you want to do it in Xhtml you need to use:

style="background-repeat:no-repeat" or just write it in your CSS directly.

Declaring doctype and working the valid code is first you should do.
__________________

Please login or register to view this content. Registration is FREE
Rickzkm is offline
Reply With Quote
View Public Profile Visit Rickzkm's homepage!
 
Old 11-10-2007, 05:21 PM Re: IE vs Firefox
Novice Talker

Posts: 13
Name: Elena
Trades: 0
Oh my God! I am so outdated! Looks like I urgently need to take some classes. Otherwise I should not be charging my customers, even that little money I charge
smelena is offline
Reply With Quote
View Public Profile
 
Old 11-10-2007, 05:24 PM Re: IE vs Firefox
Novice Talker

Posts: 13
Name: Elena
Trades: 0
... and actually it was "background-repeat: repeat; background-position:top;", I guess I just shortened it...
smelena is offline
Reply With Quote
View Public Profile
 
Old 11-10-2007, 05:37 PM Re: IE vs Firefox
Novice Talker

Posts: 13
Name: Elena
Trades: 0
Oh, one more question: how can I find out if JS is outdated or not... I'm not really brilliant, I needed calendar for filling one of the form fields (customer wanted), I found free one in Internet
smelena is offline
Reply With Quote
View Public Profile
 
Old 11-10-2007, 05:39 PM Re: IE vs Firefox
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
There are exceptions like IE6 which does not render Xhtml well and you need to apply "css hacks" to make it run.
IE6 has no trouble rendering XHTML and CSS hacks only apply to CSS, they have NO effect whatsoever on (X)HTML. The problems with IE6 and CSS is it's non-standard way of doing things, like it's seriously busted box model and many other things MS decided it was going to do its own way and thumb its nose at web standards.

XHTML isn't even necessary, at least HTML 4.01 STRICT is recommended.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

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


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

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-16-2007, 06:05 AM Re: IE vs Firefox
moondog's Avatar
Ultra Talker

Posts: 256
Location: Croatia
Trades: 0
Quote:
Originally Posted by LadynRed View Post

XHTML isn't even necessary, at least HTML 4.01 STRICT is recommended.
It sounds like New Age !

Anyway, Firefox is miles away from IE 7 (IE 6 must be burned). Firefox with Webdeveloper add-on is standard for me. Of course that I have IE7, Opera and Safari on my machine, but only for preview
moondog is offline
Reply With Quote
View Public Profile
 
Old 11-17-2007, 10:39 AM Re: IE vs Firefox
NAT3's Avatar
Novice Talker

Posts: 12
Trades: 0
today, a bunch people are still using Internet Explorer 6... it's so frustrating
__________________
-113NT-
NAT3 is offline
Reply With Quote
View Public Profile
 
Old 11-17-2007, 07:13 PM Re: IE vs Firefox
Defies a Status

Posts: 3,420
Trades: 0
Quote:
Originally Posted by NAT3 View Post
today, a bunch people are still using Internet Explorer 6... it's so frustrating
I agree. It would make my month (or year) if I woke up one morning and the IE6 market share had fallen to 10% or something! Sadly, it's not going to be anywhere near those figures for several years

All we can do is learn the IE6 hacks and use them wisely and continue to design for web standards, regardless of IE6's non-standard behaviour. It would help a lot if Microsoft started pressuring people on XP to upgrade to IE7, or at the very least, made them aware that there was a huge upgrade available. Too many people probably don't even know another version of IE is available, or even that there are alternatives to IE or Windows for that matter.
CSS4Life is offline
Reply With Quote
View Public Profile
 
Old 11-17-2007, 08:30 PM Re: IE vs Firefox
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
It would help a lot if Microsoft started pressuring people on XP to upgrade to IE7, or at the very least, made them aware that there was a huge upgrade available.
They are ! They keep pushing the IE7 upgrade out in their monthly 'updates' .. and I keep telling it to go away. Why ? Because Once I put IE7 on my machine, I lose IE6 and the ability to test my sites easily. For now, I have IE7 on my laptop to test that browser, but I'm not upgrading to IE 7 on my desktop... not now.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

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


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

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-18-2007, 03:06 AM Re: IE vs Firefox
Average Talker

Posts: 17
Trades: 0
ahhh i hate ie, with a passion, its so horrible. its abll about firefox or flock!!!!! =]
nuklear2 is offline
Reply With Quote
View Public Profile
 
Old 11-18-2007, 03:08 AM Re: IE vs Firefox
Super Moderator

Posts: 1,584
Location: Kokkola, Finland
Trades: 1
ladynred and anyone else who's interested - you can install a standalone version of IE7 alongside your normal IE6 for testing purposes
http://tredosoft.com/IE7_standalone
davemies is offline
Reply With Quote
View Public Profile Visit davemies's homepage!
 
Old 11-18-2007, 11:50 AM Re: IE vs Firefox
Novice Talker

Posts: 13
Name: Daniel Scaturro
Trades: 0
That is the one hard thing when coding a site....... getting the website to look the same on every browser. From my experiences, if you can get the webpage to look good on internet explorer, it will look good in all the other browsers. Funny things is, when I worked on my site, I didn't have to put any IE 6 hacks to get it to work properly. I guess I was one of the lucky ones.
__________________

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

Original shows, original content, period....
dmetrostars is offline
Reply With Quote
View Public Profile
 
Old 11-18-2007, 01:30 PM Re: IE vs Firefox
Average Talker

Posts: 17
Trades: 0
Quote:
Originally Posted by NAT3 View Post
today, a bunch people are still using Internet Explorer 6... it's so frustrating
It is one of the most annoying browsers.
__________________

Please login or register to view this content. Registration is FREE
&
Please login or register to view this content. Registration is FREE
- Plans at $3.95/month.
biggest-hosting is offline
Reply With Quote
View Public Profile
 
Old 11-18-2007, 02:37 PM Re: IE vs Firefox
Novice Talker

Posts: 5
Trades: 0
Design for firefox & IE7 is a minium
Jordi is offline
Reply With Quote
View Public Profile
 
Old 11-18-2007, 04:33 PM Re: IE vs Firefox
Defies a Status

Posts: 3,420
Trades: 0
Yep I'd say just design for Web Standards (currently Firefox is closest to them) and then fix for non-standards browsers like IE6 and sometimes IE7.

Apologies LadynRed, I use Mac OS X 10.4 and my desktop is using IE7 so I didn't know they were pushing it out. It remains though that there are still a lot of people who haven't heard that there is a new version of IE available. These sorts of people probably won't start using IE7 until they've upgraded to Vista.
CSS4Life is offline
Reply With Quote
View Public Profile
 
Old 11-19-2007, 01:10 AM Re: IE vs Firefox
Novice Talker

Posts: 6
Trades: 0
But many many people are use Internet Explorer 6 and that is a fact.
helpar is offline
Reply With Quote
View Public Profile
 
Old 11-23-2007, 09:17 AM Re: IE vs Firefox
BlackWater's Avatar
Experienced Talker

Posts: 31
Trades: 0
Quote:
Originally Posted by helpar View Post
But many many people are use Internet Explorer 6 and that is a fact.
Who cares what the majority of people are using, the fact still remains that some people do use Firefox and that you should make your websites look the same in both. Firefox is also gaining momentum as a web browser.
__________________
Code:
if( $hungry ) { eat(); } 
    else { sleep(); }
BlackWater is offline
Reply With Quote
View Public Profile
 
Old 11-26-2007, 05:03 AM Re: IE vs Firefox
Super Talker

Posts: 144
Trades: 0
Quote:
Originally Posted by BlackWater View Post
Who cares what the majority of people are using,
I do, because I build sites for people not for myself
I use FireFox, but always check to see what my sites look in FireFox, IR6, IE7.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
AHelpingHand is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to IE vs Firefox

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 0.83755 seconds with 12 queries