Finally!!!!!!!!!!!! After months of my page appearing differently in firefox and Internet explorer, I’ve finally been able to fix the issue of the page appearing on the left in firefox but in the middle in IE. Apparently Firefox handles CSS (Casscading Style Sheets) differently from IE and there is a little known hack that fixes this error.
For those of you familiar with CSS if you want to center align something you need to put the following line of code in:
<code> align: center; </code>
In some cases however firefox dosen’t reconize this and it gets ignored by firefox leaving your text/images on the left by default.
To fix this there is a hack that is placed in your code. All you have to do is change the above line to the following, or if you want to be sure the code works on both browsers leave the above line in and add this line aswell.
<code>align: -moz-center;</code>
I had to publish this so that other people with the same problem down the road find this post and can have the same satisfaction of solving this issue as I did. If anyone knows of more similar bugs or knows any more information on why this is , please post some of it for me.
Mr. Vaughan

0 responses so far ↓
There are no comments yet...Kick things off by filling out the form below.
You must log in to post a comment.