gdinari
gdinari

Reputation: 637

CSS only showing in Firefox, not others

I have been working on my site and now I'm doing some browser compatibility checks and something weird is going with the CSS of one link.

I have a css class applied and some php codes to execute for Firefox, but in any other browsers the style doesn't show and the php doesn't execute. I don't have an idea what's going on.

I would appreciate if someone could take a look and help me fix it.

This is page the page that is giving me trouble (www.savingsulove.com/by-location/). If you view it in Firefox, you will see that there is a middle section that is supposed to automatically display (I used an if statement and css). It works in Firefox but not in other browsers.

Please help

Upvotes: 0

Views: 238

Answers (1)

Alan Geleynse
Alan Geleynse

Reputation: 25139

Try clearing your cache in the other browsers. It is possible that you visited your site before you got it working and you are getting that cached version in your other browsers.

The PHP will be executed the same no matter which browser you are using (unless you specifically tell it not to).

Upvotes: 1

Related Questions