Custom Styling is not applied

When I use the Custom Styling as described in the documentation (or here in the cookbook), nothing happens. Changing the Call-to-Action on the same adminarea page doesn’t work either.

I installed configuratorware locally with docker and everything else seems to work ok so far.

1 Like

Hi @Chris,
thanks for your question. Could you check if you invoke the invoke.js in your public/index.html

Something like:
<script src="/invoke.js"></script>

We will add this soon to the base files that are downloadable on configuratorware.com

Best, Simon

Nope, it wasn’t there. I added it and now it tries to load it but doesn’t because the mime type is text/html not text/css.
edit: because it just links to /dynamic_file/custom_css and gets a routing error not a css file

1 Like

Looks like you have an issue with routing. Add this to your .htaccess under
# Rewrite all api-queries to the front controller. :

RewriteRule ^dynamic_file.* index.php [L]

1 Like

Unfortunately this has not changed anything :confused:

The problem sat in front of the monitor… I moved the new rewrite rule above the wildcard and it worked.

1 Like

Hey @Chris,

we updated the index.html and .htaccess of the downloadable demo project on configuratorware.com

Best, Simon