Here is how developers can customize their Thrinacia Atlas CrowdFunding platform using CSS or JavaScript.
Here is how developers can customize their Thrinacia Atlas CrowdFunding platform using CSS or JavaScript. To customize the UI, you will need access to the folders either using GIT or SFTP. Below is a link to a YouTube video that will show you how to to access your files using SFTP:
After downloading your files, you can add custom CSS and JavaScript here: src/custom/. You can add the changes you would like to make in either the custom.css file or custom.js file.
In the instance that your custom CSS is being out weighed by another property declared in another stylesheet, you can use the !important declaration to add more weight to it.
For example:
h1 {
color: green !important;
}
NOTE: This is typically not the best practice for styling web pages, as it makes debugging more difficult and breaks the natural cascading in the stylesheets, so only use when absolutely necessary.