Home › Forums › Jevelin Theme › accordions
Home › Forums › Jevelin Theme › accordions
hello,
regarding tha accordion
https://bluebeecreation.com/beta2/
for the about us section ,
i need for example why blue , why bee .. the blue to be like blue and why grey, and bold also ( strong)
i used some coding style but isn’t working however i attached 2 screenshot , with the editor the blue is changing so the code is working but online the code is showing
kindly advise how i can do it
Hi @bluebee,
I hope you are well today and thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
#page-container span.sh-accordion-title { font-weight: 600; }
Best regards,
Shufflehound team
hello,
thank you but for example i need the title to be from 2 colors
like why (black color ) and blue (blue color )
is that possible?
No it is not possible without custom coding.
Developing custom code for custom functionality is beyond the scope of support that we provide here. Please see https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support
If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5
hello again,
i attached 2 screenshot regarding the accordion , i put the text title to be blue color but it’s still black
title i mean by : why blue , why bee etc…
can you advise how i can be the title blue ? and also how i can make the title font bigger size?
i attached 2 screenshot regarding the accordion , i put the text title to be blue color but it’s still black
title i mean by : why blue , why bee etc…
can you advise how i can be the title blue ?
This is happening because you have styled them to black color by adding color: #000; in the previously shared code as following so please remove that CSS code color property.
#page-container span.sh-accordion-title { font-weight: 600; color: #000; }
and also how i can make the title font bigger size?
Just add fint size in the above shared CSS code as displayed below.
#page-container span.sh-accordion-title { font-weight: 600; font-size: 16px; }