Button problems + latest news section

Hi,

I have 2 questions.

  1. At the contact tab (send button) and the blog tab (subscribe button) I can’t figure out how I change the color of these buttons. (Need to be red like the rest.)

  2. At the front page, the ”latest news” section provides blogposts in my case. They are not alligned and I would like to know if I can place them in alligned squares or something. So with nice borders around, and alligned next to eachother.

Thanks!

Hello there,

I hope you are doing well today.

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

/*Button color*/
input[type=submit] {
    color: #fff;
}

#comments #respond .comment-form #input-submit, input[type=submit] {
    background-color: #ff2323;
    color: #fff;
}

.post {
    border: white 2px solid;
}

Best Regards,
Support