Every Menu added using the Palette items of Form Builder has a default logo at its top. You can customize this logo, replacing the default one with a custom logo of your choice. The recommended file format is SVG.
To make a logo replacement, use one of the CSS capabilities:
For the importing option, the CSS file must reside in one of the following locations:
@import url("_css_menu_logo.css")
@import url("myfolder/_css_menu_logo.css")
The CSS to use is the following:
.qx-layout > aside > .qx-info-area > div {
background-image: url("custom_logo.svg");
background-size: auto !important;
}
There are three options for specifying the logo location:
Your app's MDI container may contain tabs. In case there’s a tabs bar with a single upper-level tab button, there’s a way of hiding it by uncommenting the following:
/*
#qx-tc-button-0 {
display: none;
}.qx-tabco-buttons:has(.qx-tabco-scrollable-wrapper > :only-child) {
display: none;
}
*/
By default, the MDI container has the Minimize and Maximize buttons:
To hide those buttons, add the following to your program's main CSS file:
.qx-maximize-or-restore {
display: none !important;
}