Hi All! I’d like help resolving a problem with the button font color in a sidebar widget. I have inserted the following code into a text widget:
[av_button label='Schedule Your Complimentary Consultation' link='manually,https://app.acuityscheduling.com/schedule.php?owner=15885932&appointmentType=6833129' link_target='_blank' size='small' position='center' label_display='' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-35t993' admin_preview_bg='']
The font color is not white. I have looked at other formatting and not been able to find the issue. Can you help?
Thank you!
V.
Hi @Valerie;
the reason, I thnk, is that you keep still using the “theme color” for your button.
Try with this code :
[av_button label='Schedule Your Complimentary Consultation' link='manually,https://app.acuityscheduling.com/schedule.php?owner=15885932&appointmentType=6833129' link_target='_blank' size='small' position='center' label_display='' icon_select='no' icon='ue800' font='entypo-fontello' color='custom' custom_bg='#444444' custom_font='#ffffff' av_uid='av-35t993' admin_preview_bg='']
Hi Valerie,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
body#top .main_color .widget .avia-button-wrap.avia-button-center a {
color: #fff;
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks, Victoria! Worked great. Also, thanks begrafiks for your suggestion.