Support

Home Forums Event Espresso Premium Ticket Selector Price Format and Price on Checkout Pages

Ticket Selector Price Format and Price on Checkout Pages

Posted: September 14, 2016 at 9:03 am

Viewing 5 reply threads


PharmicaMatt

September 14, 2016 at 9:03 am

On my Event page, the ticket selector actual price does not appear directly below the “Price” title – it is slightly to the right. Is there a way to get it centered? http://pharmdev01.com/biopharma-pm-forum-event/

Also, on the Registraton Checkout Page (http://pharmdev01.com/registration-checkout/?uts=1473865228#checkout) none of the dollar amounts appear under the appropriate column. They appear right after the title and description.


Tony

  • Support Staff

September 15, 2016 at 4:05 am

Hi there,

On my Event page, the ticket selector actual price does not appear directly below the “Price” title – it is slightly to the right. Is there a way to get it centered? http://pharmdev01.com/biopharma-pm-forum-event/

If you want to center align the price to match the header you can use:

.tckt-slctr-tbl-td-price {
    text-align: center;
}

or you can align both the header and the price to the left:

.ee-ticket-selector-ticket-price-th, 
.tckt-slctr-tbl-td-price {
    text-align: left;
}

We recommend using either the My Custom CSS or Reaktiv CSS Builder plugins to add custom styles such as these.

Also, on the Registraton Checkout Page (http://pharmdev01.com/registration-checkout/?uts=1473865228#checkout) none of the dollar amounts appear under the appropriate column. They appear right after the title and description.

That’s happening due to styles your theme is applying to the .item class – http://take.ms/ktXZv

You can override that section using:

.spco-ticket-info-dv .item {
    display: table-row;
}


PharmicaMatt

September 15, 2016 at 8:06 am

Thanks. Those both worked. However, on the second page of the Registration Checkout (where you add payment info) the dollar amounts are still not appearing under the appropriate column. Again they are appearing right after the title and description.


Tony

  • Support Staff

September 15, 2016 at 2:27 pm

Ok, so this rule is too specific:

.spco-ticket-info-dv .item {
    display: table-row;
}

Change it for this:

#ee-single-page-checkout-dv .item {
    display: table-row;
    height: auto;
}

That should apply to both outputs.


PharmicaMatt

September 15, 2016 at 2:43 pm

This works pretty good but they are still not quite aligned under the column titles. They still appear a little to the right. Is there a way to get them better aligned?


Tony

  • Support Staff

September 16, 2016 at 4:10 am

Sure, try this:

.spco-payment-info-dv thead th.jst-cntr {
    text-align: right;
}

If you need to customize the layout further you will need to add your own custom styles to suit.

Viewing 5 reply threads

The support post ‘Ticket Selector Price Format and Price on Checkout Pages’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso