Home Forums WoodMart support forum Single Post: Title above the featured Image

Single Post: Title above the featured Image

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #563935

    Xavi
    Participant

    I would like to modify the single post page so that the featured photograph appears first and then the title.
    It’s possible?

    #564129

    Hung Pham
    Keymaster

    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,

Viewing 2 posts - 1 through 2 (of 2 total)