From 614c815a6793bd2bce433cceb08eb4e60cac7bd8 Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Fri, 13 Sep 2019 16:51:08 +0200 Subject: [PATCH] Changed a bit the CSS of icmoon implementation to get it running smoothly --- slt/index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/slt/index.php b/slt/index.php index 2ba450f..4942c2a 100644 --- a/slt/index.php +++ b/slt/index.php @@ -20,9 +20,12 @@ JHtml::_('jquery.framework'); // Add Stylesheets JHtml::_('stylesheet', 'templates/system/css/system.css', array('version' => 'auto', 'relative' => false)); -JHtml::_('stylesheet', 'media/jui/css/icomoon.css', array('version' => 'auto', 'relative' => false)); +// JHtml::_('stylesheet', 'media/jui/css/icomoon.css', array('version' => 'auto', 'relative' => false)); JHtml::_('stylesheet', 'main.css', array('version' => 'auto', 'relative' => true)); +$doc = JFactory::getDocument(); +$doc->addStyleSheet($this->baseurl.'/media/jui/css/icomoon.css'); + // Add Javascript for mobile menu JHtml::_('script', 'mobile.js', array('version' => 'auto', 'relative' => true));