JDocument/addStyleSheet
From Joomla! Documentation
Adds the definition of a linked external stylesheet to the document. Duplicates are ignored.
Syntax
void addStyleSheet( $url, $type, $media, $attribs )
where:
| Argument | Data type | Description | Default |
|---|---|---|---|
| $url | string | URL of stylesheet. | |
| $type | string | MIME type of script. | 'text/css' |
| $media | string | Media type that the stylesheet applies to. | null |
| $attribs | array | Array of attributes. |
Example
To add a link to some style sheet at a specific URL, you could use:
$doc =& JFactory::getDocument(); $doc->addStyleSheet("http://www.example.com/css/mystylesheet.css");
Example code will produce following link:
<link rel="stylesheet" href="http://www.example.com/css/mystylesheet.css" type="text/css" />