Support

Home Forums Event Espresso Premium EE4 – button styling

EE4 – button styling

Posted: August 24, 2021 at 6:22 pm


bhhsflpg

August 24, 2021 at 6:22 pm

I was able to customize the styling of the buttons found on our event pages using the following CSS:

.ticket-selector-submit-btn, .ticket-selector-submit-btn-wrap {
background-color: #ffffff;
font-family: ‘Playfair Display’, Georgia, Times, Times New Roman, serif;
font-weight: normal;
font-size: 18px;
color: #552448;
padding: 5px;
border-style: none;
border-width: 0px;
}

I found the following article indicating the class to use for styling the “Proceed to finalize registration” button, but it doesn’t seem to be working:
https://eventespresso.com/wiki/style-registration-checkout-buttons-using-css/

Can someone please confirm the info needed to move forward? Per the article, I was using .ticket-selector-submit-btn

Sample event page: https://blog.mycabcorner.com/events/ceo-workshop-2021/
Screenshot: https://www.dropbox.com/s/h7y373823lmhyji/Screen%20Shot%202021-08-24%20at%208.21.09%20PM.png?dl=0

Also, I can’t seem to get rid of the left hand grey border which shows on all the registration pages? (Shown on left hand side of that screenshot)

Thank you!
Stephanie


Tony

  • Support Staff

August 25, 2021 at 5:04 am

Hi Stephanie,

Can someone please confirm the info needed to move forward? Per the article, I was using .ticket-selector-submit-btn

That .ticket-selector-submit-btn class targets the ticket selector submit button which is the ‘Register now’ or ‘View Details’ button.

To style the checkout buttons you’ll need the classes shown from section 3 of that article. Now, it shows:

#spco-go-to-step-finalize_registration-btn to specifically target the ‘Finalize Registration’ button (you current ticket is free so make no difference right now, but if you start charging for tickets another button is shown, which wont then be targeted) which is great if you want to specifically target just that button, but personally, I would use:

.ticket-selector-submit-btn,
.ticket-selector-submit-btn-wrap,
.spco-next-step-btn {
    background-color: #ffffff;
    font-family: ‘Playfair Display’, Georgia, Times, Times New Roman, serif;
    font-weight: normal;
    font-size: 18px;
    color: #552448;
    padding: 5px;
    border-style: none;
    border-width: 0px;
}

(Which combines your ticket selector styles with the Single Page CheckOut, SPCO for short, styles in a single step).

Also, I can’t seem to get rid of the left hand grey border which shows on all the registration pages? (Shown on left hand side of that screenshot)

That’s a bit odd, it looks like some inline styles have been added for it but I’m not sure where from.

You can hide it on that specific page (incase it is actually used somewhere else) using this CSS:

.page-id-6500 #main-content .container:before {
    display: none;
}


bhhsflpg

August 31, 2021 at 6:53 pm

Hi Tony,

How would update the CSS you provided in order to hide that left hand bar that’s showing up on all pages? It’s not a purposeful design element used anywhere on the site and shows up on every page in the purchase process and the ticketing pages.

Thanks for all your help!
Stephanie


Tony

  • Support Staff

September 1, 2021 at 3:04 pm

Hi Stephanie,

Just removing the .page-id-6500 from the CSS selector should do it:

#main-content .container:before {
    display: none;
}

The support post ‘EE4 – button styling’ 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