Help - Search - Members - Calendar
Full Version: Firefox & Internet Explorer
Zymic Webmaster Forums > Web Design & Development > General Web Design Discussion
outlaw16151
OK im here asking what codes i need for visitors on my site that use firefox browser, a couple of people here say the cant see some of the content when using firefox but can with IE, anybody have these code?
Banjo
Can you post a link to the site.
Robbie
theres no code to make it work for both. none that i know of.
its just different programs interacting with eachother.
actually the code, im sure theres either css or php thing you can do.
but its too complicated.
outlaw16151
Thanks Robbie, Banjo, the url is http://www.outlaw16151.com

QUOTE(Robbie @ Mar 23 2008, 10:05 PM) *
theres no code to make it work for both. none that i know of.
its just different programs interacting with eachother.
actually the code, im sure theres either css or php thing you can do.
but its too complicated.

uncled1023
yea, you would use css... but it is complicated
outlaw16151
Uncled could you see everything on my site, Not everybody has this problem, just some especialliy the guy using Firefox browser,

QUOTE(uncled1023 @ Mar 24 2008, 02:20 AM) *
yea, you would use css... but it is complicated

uncled1023
ok, in my internet explorere, everything works fine. in my firefox, the page takes awhile to load, but it does. the only problem is that in firefox, the game doesnt load in the middle...
outlaw16151
Thanks uncled, not sure i can fix that with firefox, id just suggest people use IE when coming to to site, i did a lot of work on it, check out the coding i did in the video page..............the way i have them flash movies sitting right in front of that JPG picture of the iTunes video screen just click on my link and then click videos
QUOTE(uncled1023 @ Mar 24 2008, 04:51 AM) *
ok, in my internet explorere, everything works fine. in my firefox, the page takes awhile to load, but it does. the only problem is that in firefox, the game doesnt load in the middle...

Banjo
The site works fine for me in Firefox and IE6, the only problem is the game won't load in Firefox and in IE it just loads the marquee but then after a couple of seconds the rest of the site loads. I don't know whats causing the site not to load for some people maybe use different style sheets or check if they are using Firefox browser and if they are have a message saying "We recomend you to use IE" or something.
Shadow Man
hey man nice site, i remember that template
its was a good choce, i like it to cool.gif
wozzym
It works for me in safari and internet explorer.
outlaw16151
i'll have to put a button up there telling people Firefox isnt the browser to use on my site. but yall still dont have to make it yalls last visit, cmon by anytime

QUOTE(wozzym @ Mar 24 2008, 01:43 PM) *
It works for me in safari and internet explorer.

Shadow Man
try using a javascript alert to alert users
http://www.w3schools.com/
outlaw16151
hey dude thanks, im reading more into this
QUOTE(Shadow Man @ Mar 24 2008, 02:04 PM) *
try using a javascript alert to alert users
http://www.w3schools.com/

mathew edison
I believe that you might find this link very useful:
http://www.devarticles.com/c/a/PHP/PHP-Bro...CSS-Generation/

In addition to this what you can do is obtain browser type of the user and contain this in a variable. This uses the following function browser_get_agent(). Then when you know which browser the user has you can check it against the CSS files that you have, each one being for a different browser. An example would be (be aware that all HTML tags must be the same in the CSS files and that the file is to be saved as a .php file) :

<?php
if (browser_get_platform()=='Mac') {
INCLUDE YOUR MAC STYLESHEET HERE
}
if (browser_get_agent()=='IE') {
INCLUDE YOUR IE STYLESHEET HERE
}
if (browser_get_agent()=='MOZILLA') {
INCLUDE YOUR FF STYLESHEET HERE
}
else{
INCLUDE YOUR DEFAULT STRLESHEET HERE, THIS ONLY APPLIES WHEN THE USER HAS A BROWSER WHICH DOES NOT MATCH ANY OF THE ABOVE
}
?>
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.