As previously announced via banners and our newsletters, support is no longer available through this platform.

For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.

You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.

Paid customers: Please log in to your store account for support.

Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com

Okay
  Public Ticket #2690062
crCreate deault custom color for Event
Closed

Comments

  • Carin started the conversation

    can you help me with the css I would use to customize a default color for all Events, the instructors who will add events are not super tech savy and I would like to eliminate at least that step fpr them

  • [deleted] replied

    Hello Carin,

    Apologies for the delayed response, we don't work on weekends and we had some non-working days due to a holiday in our country.

    Could you please tell me on what color are you referring to exactly? The event color can be chosen when you create the event under the Customize tab. And if that doesn't help, please let me know what exactly do you want to change and send me the URL of the page where you have Amelia so I could help out with the CSS if needed. 


  • Carin replied

    Hi Marija, I want to permanently change the Event colors to our Brand Blue, without asking each instructor to paste in the hex color each time they make an event, so I need the css for default custom Event color, I will add it to Appearance, Customize, Custom CSS. https://www.screencast.com/t/bc17PCApX7jl

  • [deleted] replied

    Hi Carin,

    Apologies for replying a bit later, we don't work on weekends.

    There isn't some simple CSS (to add) for this, unfortunately. You would need to find the CSS selector of each element colored by that event color in the booking form and add it as custom CSS. So for example, for the button , this would be the CSS : 

    .amelia-app-booking #am-events-booking .am-event-list .am-event .am-event-book-cta > div .el-form-item .el-button {
      background-color: #000 !important;
    }

    for the price this:

    .amelia-app-booking #am-events-booking .am-event-list .am-event .am-event-data .am-event-price {
     background-color: #000 !important;
    }

    The color added is just as an example.