Archived topic
Place date and author over featured image in a corner
7 replies · Started by Pedro on October 26, 2018
Hello. I'm trying, but I'm not able to do it.
I want that the date and the author appear over the feater image in the post.
Something like this: https://imgur.com/a/ukA7MHc
Hi there,
do you have a link to your site with the featured image and byline meta in place?
You can edit the original topic and use the site url field for privacy.
No, i don't. I haven't uploaded it yet.
Can you provide a screen shot of a post? I need to understand the layout to be able provide the solution.
Here is a picture of the web so far
Give this CSS a shot:
.generate-columns .inside-article {
position: relative;
}
.generate-columns .inside-article .entry-header .entry-meta {
position: absolute;
top: 20px;
right: 30px;
}
.generate-columns .inside-article .entry-header .entry-meta, .generate-columns .inside-article .entry-header .entry-meta a {
color: #fff; /* Change color of meta */
}
Works like a charm!
Glad i could be of help.