I wont advise changing the files directly. Any change you make there will be lost when plugin updates. The proper way is to add custom styles for registration view. You can do it in settings (look for “Enter custom CSS rules for registration page.”).
Thank you for the reply, I am aware of loosing changes after an update.
But how can I change the colour of a selected seat?
I used this code in the custom CSS, but it didn’t work:
Element {
top: 570px;
left: 11px;
background-color: rgb(179, 41, 157);
z-index: 227;
width: 70px;
height: 70px;
--animationColor: rgb(97, 179, 41);
}
For example to change selected seat background color to red use the following
.selected-box {background-color:red !important}
-
This reply was modified 10 months ago by
thesiim.
Perfect! Thank you so much.
That was also very helpful for me. Thanks a lot thesiim