Hi there,
Thank you for your reply, we certainly consider having more V2 (Advanced) elements along the way and we will complete the list of V2 elements in the future.
Meanwhile, I want to emphasize regarding the CSS language. Even with the best and most advanced tools at hand which will complicate the user interface and usage of the element for sure, you still need to learn CSS if you want to survive in the web world. It is not possible to cover all aspects of the customization in GUI controls and you will see cases that you want something and there is no control. That is the time you will need to go back to the roots which it will be the CSS styling. I totally understand that you are a business owner and may not have time to go deep into ins and outs of the CSS. But as you are already in the web business it is essential that you learn basics (No need for fancy stuff.) I suggest that you get started here:
https://www.w3schools.com/css/
Regarding your request, that is a pure customization and it is outside of our support scope, we will try our best to give you proper code for the Accordion to get you started with the customization but the tab request is too involved and unfortunately, we will not be able to proceed. You are always welcomed to get paid help from freelance developers in the X Facebook User Group.
The accordion Title font and color can be changed from X > Launch > Options > Typography > Heading as it is following the same settings of the heading of the whole website.
Also, add the CSS code below to X > Launch > Options > CSS:
.x-accordion-group {
border-color: rgb(2, 174, 214);
border-radius: 5px
}
.x-accordion-inner {
border-color: rgb(2, 174, 214);
}
.x-accordion-heading .x-accordion-toggle.collapsed {
background-color: white;
}
.x-accordion-heading .x-accordion-toggle,
.x-accordion-heading .x-accordion-toggle:hover {
background-color: rgb(2, 174, 214);
}
The code above is not a complete customization but a getting started code to build your customization upon.
Thank you for your understanding.