I have been working with a few child themes, seeing which provides a good foundation for a site (rather than starting from scratch), or just some elements to borrow.
I have moved onto Clean Blog. I have customised some templates without issue.
However, I seem unable to have styles in a custom.css file apply to my test site (MAMP on OSX). I have created an entry in the Asset manager for the file (as I have with previous child themes):
<pre>
{% block stylesheets %}
{% do assets.addCss('theme://css/custom.css', 100) %}
{% do assets.addCss('theme://vendor/bootstrap/css/bootstrap.min.css', 98) %}
{% do assets.addCss('theme://css/clean-blog.min.css', 98) %}
{% do assets.addCss('theme://vendor/font-awesome/css/font-awesome.min.css', 98) %}
{% if browser.getBrowser == 'msie' and browser.getVersion <= 8 %}
{% do assets.addCss('theme://css/ie.css') %}
{% endif %}
{% endblock %}
</pre>
I may be missing something? Any suggestions appreciated.