Home > Back-end >  Oracle Apex Size of left side column
Oracle Apex Size of left side column

Time:10-12

in the theme roller there is an option to change the size of the left side column:

enter image description here

The maximum is 280px but I would like to increase the size in order to avoid scroll bars inside the menu of a faceted search. How can I increase the value?

CodePudding user response:

In the CSS-section of the page:

.t-Body-side {
    width: 400px !important;
}
  • Related