Blog Page Header Image and Title

  • Hi Taras,

    I am trying to have a header image and the title in my main blog page, but despite I have added a featured image to it, I don’t see any title or picture, how could i add it?

    Thanks a lot!

    Best,

    Rafa

    The blog I need help with is: (visible only to logged in users)

  • Hello Rafa,

    By default, it’s not possible to add an image to the blog page but you can use this custom CSS to display the image above your blog posts in blog view:

    
    .blog .site-content::before {
    	content: "";
    	display: block;
    	background-image: url( https://verjimanimation.files.wordpress.com/2018/06/35151605_10216725076303522_3995486038268051456_o.jpg );
    	background-size: cover;
    	height: 300px;
    	margin-top: 80px;
    }
    

    Hope this helps.

    Thanks,
    Taras

  • The topic ‘Blog Page Header Image and Title’ is closed to new replies.