Font color and size change

how to change color and font size in subscription widget shown in attachment

Hi @tipcircle,

I hope you are well today and thank you for your question.

Do you want to do this only for that widget?

If yes then could you please share me your site URL where it’s displaying so that i can help you?

Kind Regards,
Movin

on the upper right hand site

Give me solution for both 1- this particular widget and
2- for complete sidebar only

You can try changing color and font size of subscription widget by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

#secondary .jetpack_subscription_widget form {
    color: #000;
    font-size: 15px;
}

To change it for other widgets you can use the code as following.

#secondary .widget *, 
#secondary .widget a {
    color: #000;
font-size: 15px;
}