Single Post: Title above the featured Image
-
I would like to modify the single post page so that the featured photograph appears first and then the title.
It’s possible?
Hi Xavi,
Thanks for reaching to us.
Please add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.site-content article .article-inner{
display: flex;
flex-flow: row wrap;
}
.site-content article .article-inner header{
order: 1;
}
.site-content article .article-inner .meta-post-categories,
.site-content article .article-inner .wd-entities-title{
order: 2;
}
.site-content article .article-inner .meta-post-categories{
margin: 0 auto;
}
.site-content article .article-inner .article-body-container{
order: 3;
}
Regards,