That worked for establishing a button; however it applies to all columns. If possible, i’d like to segregate out the columns so I can apply different colors to the buttons in different columns.
Is it possible to identify the specific table column to apply the CSS to?
I found the correct CSS string to work. To segregate out the columns you will have to:
Right click link
Select “Inspect”
Right click the link; select “Copy”; select “Copy Selector”
Paste the selector in a notepad/word document…it should look something like this: #x_element_page_113_11 > div.table-responsive > tb-table-group > div > div > tb-table > div > table > tbody > tr:nth-child(1) > td:nth-child(2) > af-data-table-field > span > a
The column is the td:nth-child(2)
Go to your CSS tab of the page (in Page Builder) you want to apply the custom CSS to
Copy the following syntax from your “Copy Selector” selection: td:nth-child(2) af-data-table-field a
If you want a different hover CSS then just add :hover to the end of the sytnax. For example: td:nth-child(2) af-data-table-field a:hover
After that I just applied some CSS to format it to a button (I copied the Tada button CSS and changed the colors):