Skip to main content

Adjust column widths

Does your venue name/location take up two rows? Adjust the column width!

Pete Stormer avatar
Written by Pete Stormer
Updated over 5 years ago

In order to adjust the column width so that your venue name/location appears on one line, add this style block right before your Seated widget. 

<style>
  .seated-event-description-cells {
    width: 100%
  }
  .seated-event-venue-location {
    width: 70%;
  }
</style>

Note: The .seated event-description-cells class expands the column of all event descriptions (all texts except the button) and .seated-event-venue-location cell horizontally shifts the location of the venue location. 

Before:

After:

To modify the column height (condensing your events vertically) use this link here.

Note: If your texts still take up two lines after you implement the styling, adjust the .seated-event-venue-location width percentage - which determines the starting point of the venue location column. 

Did this answer your question?