I'm using AutsonSlideShow extension for Joomla 1.7 which works just fine. The plugin has its downsides tho, as it writes CSS right into the body of the index.php file. I would like to change this for validation reasons. (There's more validation errors in it btw, if anybody maybe wants to double check that)

Is there any commands or ways to send the whole part of that css-code (includes php variables) to the head instead or make it available externally?

Here is an excerpt from the default.php which is the file that writes into my index.

<style type="text/css">
.box_skitter_large<?php echo $module->id;?> {width:<?php echo $slidewidth;?>px;height:<?php echo $slideheight; ?>px;}
<?php echo $margin;?>
.box_skitter_small {width:200px;height:200px;}
.box_skitter {border:<?php echo $border;?>px solid <?php echo $bordercolor;?>; background:<?php echo $backgroundcolor;?>}
</style>

It's just a cropdown of the whole part, but it's representative. If you check the sourcecode of this demo site of the plugin you can see the problem.

Greetings, Marian

link|improve this question
FYI: It's actually faster to have all the CSS in <style>, since the browser won't have to send extra requests for the CSS files. Worth to think about. Not tested, but try looking into this: extensions.joomla.org/extensions/site-management/… – Zar Jan 13 at 12:15
Thats totally fine with me as long as it gets put in the head section, where it actually should be imho. – Marian Jan 13 at 12:17
@Zar but then you'd have a huge multiplication of lines for each single page (1 request, but more to read). Marian can you post a link to the site? What are the validation errors? – yisela Jan 13 at 12:22
@utopicam How would it be more for the browser to read? It still reads the "code", no matter if it is in another request or not. Same amount of code, less requests. – Zar Jan 13 at 12:25
@utopicam my site is still local, but if you validate the link in my post you will get the same validation errors you would if you implemented the extension on your site. – Marian Jan 13 at 12:27
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted
ob_start();
?>

YOUR CSS HERE

<?php
$style = ob_get_contents();
ob_end_clean();
JFactory::getDocument()->addStyleDeclaration($style);
link|improve this answer
That worked like a charm, tyvm Gaurav hugs – Marian Jan 13 at 12:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.