Reply to Paul > I can't update Helix template because the new version doesn't work with Advance Template Manager by Regular Labs. I'll update as soon as he cooperates with it. Or version 2.0.5 already works with Advance Template Manager?
Reply to Rashida > Yes, custom.css is the solution that suits me, but I don't know how to add it at the end, after all the other .css files. I have a problem with sorting.
I want something like this:
<link href="/module1.css" rel="stylesheet" />
<link href="/module2.css" rel="stylesheet" />
<link href="/module3.css" rel="stylesheet" />
<link href="/module4.css" rel="stylesheet" />
<link href="/CUSTOM.CSS" rel="stylesheet" />
Even if I load the custom.css in the index.php file right before the end of the head tag, the custom.css is not the last one.
$theme->add_css('custom.css');
?>
</head>
<body
Not like this:
<link href="/module1.css" rel="stylesheet" />
<link href="/module2.css" rel="stylesheet" />
<link href="/CUSTOM.CSS" rel="stylesheet" />
<link href="/module3.css" rel="stylesheet" />
<link href="/module4.css" rel="stylesheet" />