Reply
Old 05-01-2005, 09:55 PM css: firefox vs. ie
cpfreak23's Avatar
Super Talker

Posts: 143
Trades: 0
ok i have made this web page based on css, and im having problems viewing w/ firefox, but it looks great in internet explorer, and ideas?

the web page is: http://www.convandesign.com/index.htm
and the css is: http://convandesign.com/emx_nav_left.css
cpfreak23 is offline
Reply With Quote
View Public Profile
 
 
When You Register, These Ads Go Away!
Old 05-02-2005, 12:53 AM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
well for one, please optimize your images to the left. they load slow , im using DSL and its going slowwwwwwwwwww hehh. thanks

the fix to your problem is the fact being that you can be lazy with your xhtml and/or css and IE will still "guess" and usually looks like you want it to while other standard compliant browsers are more demanding for strict markup. you forgot one thing. you forgot to specify the width of your main content div. in you style sheet it looks like:
HTML Code:
#content{
	padding: 0px 10px 0px 0px;
	margin:0px 0px 0px 0px;
	border-left: 1px solid #ccd2d2;
	float: left;
}
you need to add a 500px width, then it should look just like IE.. like so:
HTML Code:
#content{
	padding: 0px 10px 0px 0px;
	margin:0px 0px 0px 0px;
	border-left: 1px solid #ccd2d2;
	float: left;
        width:500px;
}
hope this was helpful
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-03-2005, 10:34 PM
cpfreak23's Avatar
Super Talker

Posts: 143
Trades: 0
thanks!!
cpfreak23 is offline
Reply With Quote
View Public Profile
 
Old 05-03-2005, 10:36 PM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
your welcoem
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-03-2005, 10:39 PM
cpfreak23's Avatar
Super Talker

Posts: 143
Trades: 0
umm i did tat and it still dont work
cpfreak23 is offline
Reply With Quote
View Public Profile
 
Old 05-03-2005, 10:40 PM
cpfreak23's Avatar
Super Talker

Posts: 143
Trades: 0
nvm ya it did! thanx!
cpfreak23 is offline
Reply With Quote
View Public Profile
 
Old 05-04-2005, 01:03 AM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
welcome once again
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-04-2005, 10:29 AM
Miz
Miz's Avatar
Average Talker

Posts: 16
Location: The Sunny South
Trades: 0
For all that Firefox is a great browser it seems to be missing support for some basic functions such *** CSS and some java script, its an excellent browser and I am a convert but whenever I create web pages I always do it using IE first, when it is fine with that I tweak it to work with firefox (not always possible)... mozilla should have tested it mor before releasing it
Miz is offline
Reply With Quote
View Public Profile Visit Miz's homepage!
 
Old 05-04-2005, 06:34 PM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
well its not firefox...its IE. I used to be an IE guy until i really looked into it. For one, IE is not safe, but also IE doesnt calculate browser tags well, or i should say "correctly". firefox reads the tags the way they should be and IE reads the tags as they "think" they should. as in, if the user creates a property and types something in that has no support for, it outputs what it thinks you want, where firefox outputs what its suppose to do.

my suggestion to you is test everything thing with a standards compliant browser first (firefox, opera, safari) and then test on IE. the errors you will find are minimal and alot easier to fix.
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-04-2005, 08:52 PM
Minaki's Avatar
Defies a Status

Posts: 1,626
Location: Guildford, UK
Trades: 0
Quote:
IE is not safe
IE is safe. So long as the person using it has more than 1/2 a brain cell.

Quote:
IE doesnt calculate browser tags well, or i should say "correctly".
You need to use a correct DOCTYPE to put it into standards compliant mode. See http://msdn.microsoft.com/library/de...hancements.asp
Even then it has a couple of bugs... but hey, so does every browser. (Seems like I've had to update Firefox far more than IE lately... and at work the 1.03 update seriously screwed things up...)
__________________
Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
Inoxia Pyrotechnics Supplies | Surrey Angels Cheerleading Squad
Minaki is offline
Reply With Quote
View Public Profile Visit Minaki's homepage!
 
Old 05-04-2005, 09:42 PM
ACJavascript's Avatar
Humble Mod

Posts: 548
Location: CT, USA
Trades: 0
I couldn't agree more with Minaki.

Give firefox a while more and you will see it crack. I think IE has more cracks because everbody wants to take down Microsoft lol. Who wants to hack the small browser compeating with Microsoft??
__________________
CYTech-services.com - 100 Satisfied Customers - Custom Programming and Web Development
ACJavascript is offline
Reply With Quote
View Public Profile Visit ACJavascript's homepage!
 
Old 05-05-2005, 02:34 AM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
as I see alot of "IE" users here i only gritt my teeth. its not about "bashing MS". I love microsoft and think bill gates is one **** of an awesome man. but IE is unsafe and things are downloaded to it without your acknowlegment/say. i did a test. for one week using IE I had 16 new adware problems. using FF for a week, i had none.

thats my say, and of course poeple tend to disagree because they are used to their little box, otherwise known as liberals. change is good. live a little and see what else is out there. i dont care what browser you use; its a matter of how you site looks.

test your website on as many browsers as possible. make sure that they look somewhat the same on all of them. thats the main point im trying to put forth...
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-05-2005, 05:50 PM
Kaiman's Avatar
Extreme Talker

Posts: 237
Trades: 0
I am in agreement with Drew on this one. Although, admitedly, I just read an interesting article in a recent PC Magazine, about some of the potential security flaws in Mozilla/Firefox.

Even still you won't find nearly as many incidents of spyware/malware or browser hijacks etc in Mozilla because they closed many of the holes that are in IE. Plus it took Microsoft six version to put in a pop-up blocker and Mozilla had a popup blocker built into their earliest release.

As for the CSS question, Mozilla is by far much more CSS compliant, the downside being that websites that aren't compliant won't display as well in Firefox.

I have said it before on this forum and I'll say it again, I look forward to the day when everyone gets their **** together and creates browsers that render things the same.

Kaiman,

Website Design and Hosting - Glenwood Springs, CO
Kaiman is offline
Reply With Quote
View Public Profile
 
Old 05-05-2005, 06:09 PM
CasaPages's Avatar
SillyPhilly

Posts: 758
Location: between here an somewhere else
Trades: 0
The more I code in the w3c standards the more I notice that for things to render properly in IE I have to add extra code in order to make the site look even remotely close in IE as it does in other browsers......
__________________
It Happens
FreelanceKillers.com
CasaPages is offline
Reply With Quote
View Public Profile Visit CasaPages's homepage!
 
Old 05-06-2005, 10:11 AM
Minaki's Avatar
Defies a Status

Posts: 1,626
Location: Guildford, UK
Trades: 0
IE has holes, but Microsoft releases updates for them. Just as Firefox has updates, you're supposed to install them if you're worried about security. That, and being careful about what you click on (that should go without saying on the internet) and you shouldn't have any problems... I use IE extensively at home, work, and on the road and every time I run spyware scans (about once a month) all they ever come up with is a few cookies...

As for CSS, use your nog. I have an incredibly complex CSS site on the go and only need 8 lines of CSS to make it look good in IE. Put some effort into it, it's not hard
__________________
Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
Inoxia Pyrotechnics Supplies | Surrey Angels Cheerleading Squad
Minaki is offline
Reply With Quote
View Public Profile Visit Minaki's homepage!
 
Old 05-09-2005, 05:35 PM
Novice Talker

Posts: 9
Trades: 0
Firefox is less forgiving than IE. Which is a good thing. Most websites will look fine in IE, but you know you, the programmer, forgot something in the code when it doesn't work in Firefox.

At least - my opinion.
wakasm is offline
Reply With Quote
View Public Profile
 
Old 05-09-2005, 07:34 PM
desertland's Avatar
Skilled Talker

Posts: 86
Trades: 0
I have to agree with drew as well here... in addition to the arguments already presented, firefox has a number of excellent features. Their plugins really give it more flexibility. The web developer plugin is huge asset to anyone developing websites. Tabs are also an incredible feature... once you try Firefox, there's no going back =)
__________________
I store my recipes online (the way nature intended) at www.meanmeals.com
desertland is offline
Reply With Quote
View Public Profile
 
Old 05-10-2005, 08:02 AM
Minaki's Avatar
Defies a Status

Posts: 1,626
Location: Guildford, UK
Trades: 0
Quote:
once you try Firefox, there's no going back =)
I did.
__________________
Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
Inoxia Pyrotechnics Supplies | Surrey Angels Cheerleading Squad
Minaki is offline
Reply With Quote
View Public Profile Visit Minaki's homepage!
 
Old 05-10-2005, 06:25 PM
drewrockshard's Avatar
Super Talker

Posts: 100
Name: Drew
Location: Garland (Dallas), Texas
Trades: 0
Quote:
Originally Posted by Minaki
I did.
im sorry. not everyone can be perfect.
__________________
Best Regards,
Drew Decker
http://www.deckerd.com
drewrockshard is offline
Reply With Quote
View Public Profile
 
Old 05-11-2005, 08:00 PM
Minaki's Avatar
Defies a Status

Posts: 1,626
Location: Guildford, UK
Trades: 0
Quote:
im sorry. not everyone can be perfect.
I know, that's why they still use Firefox
__________________
Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
Inoxia Pyrotechnics Supplies | Surrey Angels Cheerleading Squad
Minaki is offline
Reply With Quote
View Public Profile Visit Minaki's homepage!
 
Reply     « Reply to css: firefox vs. 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 0.14158 seconds with 13 queries