2
I found a solution to the firefox, netscape layout issues with cascading style sheets CSS.
After loading XOOPS onto my host server I found a handler modification in the Apache configuration for css/text type.
The .css extention was now handled by PHP.
Strange??
CSS rendering has never been and issue before.
To resolve this issue:
01.)
This issue can be resolved by adding a header call to the top of your "dynamic" CSS files (PHP) like this:
("Content-type: text/css"); ?>
OR
02.)
If you have access to the modify the handlers for Apache directly or through a CPanel type of setup, you can add your own handler:
.css text/css
AND/OR
.03)
Use htacess file to force handler
your htacess file will need this line:
AddHandler text/css .css
I hope this saves other developers hours of fustration.
-trickmandan
PokerPanda.com