Quick Q re edit/detail buttons icon only

Hi Folks
I’m always looking for ways to save screen real estate. Is there any way to delete the word edit and details and only have an icon on tables (see screenshot example) … I probably missed something obvious Tks

Hi @arthurbuy -

Very easy. In the Page Builder, click on the button column and unhide the title field and delete the name. Then save.

Adam

Hi Adam
Thanks for this and your MANY contributions on the community forum.

I’m trying to delete the word in the button itself …not the column title

So for example I’d only have the trash can icon on the delete button.

Same on the edit button …just have the pencil.

If I look at most commerical apps they seem to work like that

I always think “less is more” when it comes to UI

tks
Noel

Then you will have to use CSS and display:none on the text. Right click the button text, find the selector and then go into you CSS tab in Page Builder and paste the selector while adding display:none; to the CSS class.

was afraid that might be the only answer :stuck_out_tongue_winking_eye:… no prob thanks again for your input … the icon is essentially pat of the content so hard to determine how to keep that but hide the text …much appreciated regards Noel

chatGPT to the rescue :grinning: this works

.btn-danger i.fa-trash::after {
content: ‘’;
visibility: hidden;
}

.btn-danger {
font-size: 0; /* Hides the text */
}

.btn-danger i {
font-size: 16px; /* Adjust based on your actual icon size */
}

Using the builder on mobile, now that’s courage :crazy_face:

TB is with me ANYWHERE @moe !!!

1 Like

Hi,

With the Edit and Delete Fields I find remvoing the Name removes it in the header and per row, no CSS, maybe the Link Field is different?

Thanks

Dan

1 Like

No that does not work afaik

image

If this is what your looking for, simply have the title field blank and then hide the title.

Duh :scream_cat:
you are correct …that works.
Need to do in this order … Delete the text first and then tick “Hide Col Title”
thanks for your help
Noel

1 Like