Hi -- I'm using the JA_Kidscorner template in a Joomla 4 site and I'm confused as to how to setup a custom.css file to adjust the border radius in the JA ACM Slideshow. I've created the file in the template's css directory and put in the following style: .acm-slideshow .owl-carousel .owl-stage-outer {
border-radius: 5px !important;
}
I see the following code in the template's /tpls/blocks/head.php file:
<?php
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/css/custom.css');
}
?>
But that code doesn't appear in the page source. Why is that code there if it isn't linking to the custom.css file?
Some help would be appreciated.