How can I move image to under headline?

Hello,

At the moment, when I add an image to the top of a post, it appears under the date & byline.

I would like it to appear directly under the heading, and the date and byline to appear underneath the image.

How do I do this?

Presumably it will involve some coding, so is it best to use the child theme?

Also if I can get away with a third question in one post…

How do I omit the author from the byline? Just want the date.

Many thanks

Hi @timfel,

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

At the moment, when I add an image to the top of a post, it appears under the date & byline.

Are you talking about the post featured image?

If yes then it’s displaying for me at the top of the post as shown in the attached screenshot.

Please advise.

I would like it to appear directly under the heading, and the date and byline to appear underneath the image.

How do I do this?

Presumably it will involve some coding, so is it best to use the child theme?

Yes you have to develop custom code in the child theme of Sparkling theme to achieve this.

How do I omit the author from the byline? Just want the date.

You can try achieving this 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

.entry-meta span.byline {
    display: none;
}

Best Regards,
Movin