The Flain
The Flain

Reputation: 41

Blogger Contempo theme : I want to remove the description of all posts. resize image like feature blog image in CONTEMPO THEME

I want to remove the description of all posts from all pages of the website. And resize images like feature blog image ( But Medium size ) in CONTEMPO THEME. Checkout featured post and another post

Featured Post

Right now all posts display like this :

Another post

Sample website - http://lazycoder7.blogspot.com/

Upvotes: 0

Views: 837

Answers (1)

Bhagi20
Bhagi20

Reputation: 98

Do these changes. go to theme > edit HTML.

  1. removing a description
    .post-snippet.snippet-container { display : none; }
    
  2. Resize posts image.
  • Search ".post-body .snippet-thumbnail" and Remove all the attributes from the below class

    .post-body .snippet-thumbnail {
    }
    
  • Search ".post-body .snippet-thumbnail img" and Give attribute to the below class.

    .post-body .snippet-thumbnail img {
        width: 100%;
    }
    
  • Search "(max-width: 800px) 20vw, 128px" and replace that tag with the below tag

    <b:include
        data='{image: data:post.featuredImage, imageSizes: [256, 512, 945, 1684], imageRatio: &quot;945:600&quot;, 
            sourceSizes: &quot;(min-width: 954px) 842px, (min-width: 801px) calc(100vw - 112px), 
            calc(100vw - 64px)&quot;, enhancedSourceset: data:highRes }'
        name='responsiveImage'/>
    

Upvotes: 1

Related Questions