If you would like to upgrade to a newer long-term support version of Studio Pro, see Moving from Mendix Studio Pro 8 to 9.
Configure Your Theme
Introduction
This document describes how to configure the styling of your page in Studio Pro.
Configuring Your Theme
The styling that is loaded when opening your Mendix application in a web browser is configured in the HTML of your index pages.
To ensure that the same styling is loaded when viewing your page in Studio Pro, you can configure the "cssFiles"
property in settings.json in the theme folder of your app. For example, in this configuration, styles/web/css/main.css
is loaded when viewing a page in Studio Pro:
{
"cssFiles": [ "styles/web/css/main.css" ]
}
To avoid having to maintain the styling that is loaded in the client and Studio Pro separately, you can use the following token in your index pages to load the same styling in the client: {{themecss}}
.
<head>
{{themecss}}
</head>