Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #985269

    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!

    #985770

    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

    #985963

    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?

    #986005

    Hi,

    Adjust to the following:

    .avia-table tr:first-child th {
    vertical-align:top!important;
    }

    Best regards,
    Jordan Shannon

    #986020

    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

      below

    where is says, Donor, Bronze Member, etc?
    The row that starts with the Backcountry Discovery Routes logo…

    #986045

    Hi,

    Adjust to this:

    .avia-table tr th {
    vertical-align:top!important;
    }

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.