Hi Kathy,
If you want to change the color/font of the particular post then you should use Custom css. Firstly you need to get your post id and apply css the header and content.
For example your id is 42 then to change the color and font-size of title your css should be
article#post-47 h1.entry-title a {
color:#f00;
font-size:14px;
}
and to change the color and font-size of the content your css should be
article#post-57 .entry-content p {
color:#f00;
font-size:14px;
}
and to find the post-id you should inspect the post element. Screeshot is attached to you to show how to find the post id.
Thanks.
Untitled-1.jpg
Attachments:
You must be
logged in to view attached files.