Please tell me how to reduce the space

Changed the tab icon with Rich Text code like the image. But it takes up a lot of space. Please tell me how to reduce the space.

put these CSS out of the screen

What does put out of mean? Are you saying to remove it?

Try using 1 Rich text component to put all of your CSS for that screen and see if that will work.

You can use CSS to move or minimize rich text components

Shouldn’t the visibility be adjusted in the options?

20221027_064247

no, that will remove CSS… you need to hide them, use this code for each element you wanna hide:

<pre><span><style>
div[id*='screenScrollView'] > div > :nth-child(9) {
display:none !important;
}

change the child number to the position of the element you wanna hide… you can put all codes in one element… including this one… do not repeat the first line

2 Likes