The first thing you'll need to do is open
includes/templates/template_default/common/html_header.php
Find the following code and add the portions highlighted in red
Code:
/**
* load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
*/
$manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
$tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
$tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
$sheets_array = array('/' . $_SESSION['language'] . '_stylesheet',
'/' . $tmp_pagename,
'/' . $_SESSION['language'] . '_' . $tmp_pagename,
'/c_' . $cPath,
'/' . $_SESSION['language'] . '_c_' . $cPath,
'/m_' . $manufacturers_id,
'/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id,
'/p_' . $tmp_products_id,
'/' . $_SESSION['language'] . '_p_' . $tmp_products_id
'/chapter_' . $chapter_id,
'/' . $_SESSION['language'] . '_chapter_' . $chapter_id,
'/ezpage_' . $ezpage_id,
'/' . $_SESSION['language'] . '_ezpage_' . $ezpage_id
);
Save the file to includes/templates/YOUR_TEMPLATE/common/html_header.php
and upload to your server.
Now you can name your stylesheets as follows:
chapter_1.css or ezpage_2.css