Hi,
We recently purchased the PRO theme Atlas by Kalungi.
We created a child theme to be able to customise the CSS.
http://upflowy-20526282.hs-sites.com/test
Unfortunately, it seems that the main.min.css of the PRO theme is loading AFTER the main.min.css of the CHILD theme, taking priority. As a consequence, the theme settings are not applied as they are overridden by the default values of the PRO theme.
The whole website should use the Nunito font, instead of the Rubik or Inter font family.
How can that be fixed?
Thanks a lot for your help
Hello @guillaume_ang , thank you for writing,
Could you post the code from the template file?
It will possibly be in the “templates” folder and then inside the “layouts” folder of the child theme folder you created in the design manager. The filename will be something like “layout.html”. The ordering is done from within the template so you should change it from there, its very likely to look something like this:
{{ require_css(get_asset_url("../0_upflowy_atlas/css/main.css")) }}
{{ require_css(get_asset_url("../0_upflowy_atlas/css/custom.css")) }}
{{ require_css(get_asset_url("../../kalungi_com/Atlas_Pro_SaaS_Website_Theme/css/main.css")) }}
So you only need to change the order so that the desired css be at the bottom.
If you need help navigating in the design manager this page will help you.
If you need further assistance you can always post here with further details.
If my answer was helpful please mark it as a solution.