We apologize for the instability of composr.app and appreciate your patience. We are working on the statistics addon and trying to find an optimal way to store and render data. Unfortunately, we have yet to find a solution that can handle the traffic (and therefore, tens of millions of statistical records) of composr.app. We're working hard on one.
#3237 - Downloads css being parsed in users online
It may be a block loading up the CSS. However, in any case it's important that CSS is written so it can all be loaded at once without any adverse reaction (other than performance).
To target styles to a specific page you can use the page_running_<pagename> CSS class we automatically inserted into the DOM tree.
E.g.
.page_running_downloads p { color: red; }
would make all paragraphs red but only on the download page.
To target styles to a specific page you can use the page_running_<pagename> CSS class we automatically inserted into the DOM tree.
E.g.
.page_running_downloads p { color: red; }
would make all paragraphs red but only on the download page.