Page 1 of 1

align table to center in list page

Posted: Mon Apr 08, 2024 1:46 am
by danilo.macri

HI,
I have the "user" table and only the "profile" column is displayed in the list page.
I would like the table to be aligned to the center of the page and not to the left.
Do you know how I can do it?

Thank you


Re: align table to center in list page

Posted: Mon Apr 08, 2024 10:17 am
by mobhar

You may simply put this following jQuery code in Startup Script that belongs to the List Page:

$(".ew-grid").addClass("mx-auto").addClass("w-auto");

Re: align table to center in list page

Posted: Mon Apr 08, 2024 5:15 pm
by danilo.macri

perfect, thank you.