This topic is locked
[SOLVED]

Change common pages menu item heights to remove empty space

9/28/2021 6:37:58 PM
PHPRunner General questions
J
jwehner author

I would like to know is there a way to change the height of the common pages menu item? See screen shot. I would like to make this smaller so there is not so much empty space.
img alt

Thank you.

woodey2002 9/29/2021

A quick fix would be to reduce the title font size i.e. reduce the font size of "FILE CLEANUP NOTIFICATION" in the orange heading, which should make the 3 white description fields the same size.

I am also sure you can adjuse the size via CSS.

Cheers,
J

mbintex 9/29/2021

CSS is your friend as often

Change the height of

.bs-welcome-content {
height: 400px;
padding: 10px;
}

J
jwehner author 9/29/2021

I found this as the best soultion by adding this css:

:host {
height: 90px;
}