hi
i want to add the progressive sidebar to my page, so
i follow this documents
http://www.t3-framework.org/documentation/bs3-customization#embed-styleand
http://www.joomlart.com/tutorials/joomla-tutorials/tutorial-how-to-add-progressive-sidebar-navigation-in-joomla-article
1.first I create a affix.js file, and affix.css file.( file location are the same as the following code)
2. i edited the head.php. just added the following code:
<?php
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/templates/purity_iii/local/css/affix.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/templates/purity_iii/local/css/affix.css');
}
?>
<?php
if(is_file(T3_TEMPLATE_PATH . '/templates/purity_iii/js/affix.js')) {
$this->addScript(T3_TEMPLATE_URL.'/templates/purity_iii/js/affix.js');
}
?>
3. create a article by using the sample in the document.
4. and i got this result :
PS1. my theme is in the particular color theme via “theme magic”.
PS2. my site is on localhost
i dont know what i am doing wrong.
thanks !!!!