Hiding block elements - top, bottom

Hey folks!

The answer here might be using custom CSS. I’d like to remove some of these parts of the view for a user. There doesn’t appear to be obvious options to do so within the Builder UX.

Can I remove these parts that are in the red boxes without custom code?

The top one is

.table-actions {
display: none;
}

The bottom one is trickier. You need to right click the page, inspect element and copy the selector for the bottom one. You’ll see its called table actions, just like the top. Right click the table actions and click copy->copy selector. It’s going to look something like this…

#x_element_page_12_12 > div:nth-child(3) > div:nth-child(4)

1 Like

Good call. I do see the code when inspecting though perhaps I need to play it somewhere else.

The following doesn’t seem to work. Any ideas?

Spoke too soon. I see that, instead of placing the CSS in the element, just to place it on the page CSS.

And it now works!

1 Like