Nimbuz:
Try this:
<?php if(extension_loaded('zlib')){ob_start('ob_gzhandler');} header("Content-type: text/css"); ?>
YOUR ENTIRE STYLESHEET GOES HERE
<?php if(extension_loaded('zlib')){ob_end_flush();}?>
..and rename your stylesheet.css to stylesheet.css.php
Thats it. And see a dramatic decrease in page load time. Should compress ATLEAST (not "UPTO") 70%.
Edit: Ofcourse you need to change stylesheet.css to stylesheet.css.php in the head section.
Hi Nimbuz, I don't know enough about the code to know what file that code is in. Can you nudge me in a direction? And when you talk about the "head" section... are you talking about tpl_header.php?
Sorry for the dumb questions... I'm still new at this.
Thanks a lot!
update: I think I might know what you are talking about now. Do I put the code at the top and bottom of my stylesheet.css then rename it to stylesheet.css.php?... I think that's what you are talking about... now all I need to know is what the "head" file is... I will start looking (smile)