mindtonic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Firefox Won’t Display ThemesHey everyone…
Here is how to fix this, complements of Alex from eGlobal design (https://eglobaldesign.com):
I believe the problem you’re having is because of some header stuff. You should see an error about content type if you open up the javascript console in firefox when you load this page. I’ve run into this before, it usually just throws a warning message; I don’t know why it sometimes breaks the whole stylesheet. It’s because .css files on our webserver are processed by PHP before getting sent, which gives it a “text/html” content type instead of “text/css”. I’ve gotten around this before by adding some extra PHP code at the top and bottom of the stylesheets to set the correct header.
Put this bit of php code at the top of your stylesheet:
<?php
ob_start();
header("Content-Type: text/css");
?>And put this at the end
<?php
ob_end_flush();
?>Forum: Themes and Templates
In reply to: Firefox Won’t Display ThemesIt looks like everything is set as you directed… no change in the display results…
Forum: Themes and Templates
In reply to: Firefox Won’t Display ThemesThank you for your time and assistance. I will try your suggestions and post the results here.
If anyone else comes along and has similar problems or ideas, please let me know. Seems awfully strange the it works in explorer but not in firefox!
THANKS AGAIN!
Forum: Themes and Templates
In reply to: Firefox Won’t Display ThemesNow that is interesting. I just tried web dev too and had the same results. very strange…
Forum: Themes and Templates
In reply to: Firefox Won’t Display ThemesCategories is the name of the theme I was using…
I changed it to default to see if that makes it easier for you to find a problem.
THANK YOU!!!
Forum: Themes and Templates
In reply to: Firefox Won’t Display Themes