Hi guys,
I am trying to re-order my posts so that the image is featured below the post title and author details.
I’ve followed Peter’s advice in this thread but this has now made the post title and author details left aligned and it has also removed the padding between these details and the image.
I’m pretty stuck (again), would you be able let me know what I need to do?
Many thanks
edney23
Hey edney23!
use this code in Quick CSS field:
.entry-content-header {
text-align: right;
}
Cheers!
Andy
Thanks Andy – think my description of the issue was lacking.
The problem is that the post title plus details are now left aligned to the point where they are no longer in line with the image and over the multi-author column. The title and details also are missing the line break between them and the picture.
Example attached – no idea how to fix this despite a few hours of trying.
Could you lend some further help??
Many thanks
edney23
Hey!
That’s weird, not sure why that happened. Please try this in Quick CSS:
@media only screen and (min-width: 768px) {
.entry-content-header {
padding-left: 130px;
margin-bottom: 10px;
}
}
Best regards,
Rikard
Thanks Rikard but that doesn’t appear to have worked either…
Would you be able to suggest something else?
*Actually* that seems to have worked on the blog page but it has indented the blog widget to the right on the homepage.
Sorry guys – this seems to be a tricky one!
Hey edney23!
It shouldnt be affecting the homepage fed, but you could try assigning the css Rikard provided to the blog page only by using the page id.
Here’s an example:
@media only screen and (min-width: 768px) {
.page-id-731 .entry-content-header {
padding-left: 130px;
margin-bottom: 10px;
}
}
Regards,
Dake
You guys are the bees knees. Thanks a lot that worked!