imagebox shrinking on mainbox when I don't want it to. #1833
-
I'm having a bit of trouble with the sizing of the components in the mainbox. When I reduce the number of lines in my listview, the height of the imagebox shrinks. Also, for example: whenever I increase the spacing of a component within the mainbox, it skews the height of the imagebox.
You can see the problem in the images below that when listview has lines set to 5 it breaks the desired look. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
how you pack the widgets (expanding rules) imagebox will be equal size to listview. imagebox {
expand: false;
} The nforce the right height with setting f.e. padding on 'dummy'. dummy {
expand: true;
padding: 50px;
} (Also add @import "default" at top of theme to have it load correctly standalone given you are on recent version). |
Beta Was this translation helpful? Give feedback.
how you pack the widgets (expanding rules) imagebox will be equal size to listview.
You can fix this with:
The nforce the right height with setting f.e. padding on 'dummy'.
(Also add
at top of theme to have it load correctly standalone given you are on recent version).