Hi
You can open file: root/templates/purity_iii/tpls/blocks/head.php
Look for:
<?php
// SYSTEM CSS
$this->addStyleSheet(JURI::base(true) . '/templates/system/css/system.css');
?>
change to:
<?php
if (version_compare(JVERSION, '4.0', 'lt')) {
// SYSTEM CSS
$this->addStyleSheet(JURI::base(true) . '/templates/system/css/system.css');
}
?>
It's added in template but not release yet, it will be ready in the next version.