Remove Empty Grey Title Box & Change Purple Default Colour on Blog Subscribe

Hello,

I’ve tried to find answers to the questions below but can’t seem to make anything work, can you please help?

  1. How do I remove the grey box (what used the hold a title but used CSS to remove this) from the top of a page? Ie.: http://amytinsonphotography.com/portfolio/ & http://amytinsonphotography.com/testimonial/

  2. How do I change the purple background on the blog Jetpack subscribe box? http://amytinsonphotography.com/blog/

  3. How do I change the colour of the post author from purple also? http://amytinsonphotography.com/2017/05/10/bluebells-hunt-continues/

Thanks in advance & kind regards,
Amy

Hello there,

I hope you are doing well today.

You can use the following CSS code to implement the changes by going to Appearance > Customize > Additional CSS and pasting it there.


/*Remove grey box*/
.header-callout {
    display: none;
}
/*Subscribe box background color*/
.jetpack_subscription_widget form {
    background: red;
}
/*Post author color*/
.post-content .post-meta li a {
    color: red;
}

Best Regards,
Support