Hi Peter Buric,
I think you can change that logo in the Atlas_TopBar layout. Replace the Mendix logo with yours.
Result :
Thanks and regards,
Vijayabharathi V
The best UI that the Mendix platform offers you to make changes like this is actually not in Mendix Studio Pro, the desktop editor, but in Mendix Studio, the web version. You best first try your luck there, it will save you tweaking about in css. Here is how to get to Studio:
- In Studio Pro click on Menu-option ‘Version Control” => “Branch line manager”
- Select your branch and click button “Enable for Mendix Studio”
Then go to Mendix Studio by clicking this in the top right of Mendix Studio Pro:
In Mendix Studio click on the brush at the left bottom of your screen and you will see some styling options
*Edited*
For the background-image:
- open theme\styles\web\sass\app\_custom.scss and add
.layout-atlas{
background-image: url($bg-image);
}
And in the _custom-variable under “//== Step 2: UI Customization” under “//backgrounds” add
// Backgrounds
$bg-color: #FFFFFF;
$bg-color-secondary: #F5F8FD;
$bg-image: '../../../resources/yourimage.png';
../../../ because the root path is <projectdir>/theme/style/web/css, while i think the most logic place to store your actual background image is <projectdir>/theme/resources which you can reach with going up three times by ../, but that part you had already figured :-)
For changing the background in Native, I have not had the pleasure of doing that myself but see Eric Tieniber’s answer at https://forum.mendix.com/link/questions/107951