Hello.
Is it possible to “vertical-align: top” the data in just the first row of an Enfold table?
Please see the link in the private content.
I am looking to target the first data row. All the other rows should be vertical align middle.
Thank you in advance!
Hey flordelizamejia,
Please try this code in the General Styling > Quick CSS field:
.avia-table td:nth-child(1) {
vertical-align: top !important;
}
Please clear your browser cache and check.
Best regards,
Mike
Thank you for the fast response.
I tried the provided css and its close, but it seems to align all the data in the column.
Is there a way to target that specific row?
Hi,
Adjust to the following:
.avia-table tr:first-child th {
vertical-align:top!important;
}
Best regards,
Jordan Shannon
Thank you!
I applied the code and it looked like it vertically aligned the first cell in my header row…where is says, “DONOR”
Would it be possible to vertically align the first data row, e.g the row
where is says, Donor, Bronze Member, etc?
The row that starts with the Backcountry Discovery Routes logo…
Hi,
Adjust to this:
.avia-table tr th {
vertical-align:top!important;
}
Best regards,
Jordan Shannon