Blogger Contempo 主题:我想删除所有帖子的描述。像 CONTEMPO THEME 中的特色博客图像一样调整图像大小
Blogger Contempo theme : I want to remove the description of all posts. resize image like feature blog image in CONTEMPO THEME
我想从网站的所有页面中删除所有 post 的描述。并在 CONTEMPO THEME 中调整图像大小,例如特色博客图像(但中等大小)。
结帐精选 post 和另一个 post
Featured Post
现在所有 post 显示如下:
Another post
做这些改变。转到主题 > 编辑 HTML.
- 正在删除说明
.post-snippet.snippet-container { display : none; }
- 调整帖子图片大小。
搜索“.post-body .snippet-thumbnail”并删除下面的所有属性 class
.post-body .snippet-thumbnail {
}
搜索“.post-body .snippet-thumbnail img”并赋予下面的属性class.
.post-body .snippet-thumbnail img {
width: 100%;
}
搜索“(max-width: 800px) 20vw, 128px”并将该标签替换为以下标签
<b:include
data='{image: data:post.featuredImage, imageSizes: [256, 512, 945, 1684], imageRatio: "945:600",
sourceSizes: "(min-width: 954px) 842px, (min-width: 801px) calc(100vw - 112px),
calc(100vw - 64px)", enhancedSourceset: data:highRes }'
name='responsiveImage'/>
我想从网站的所有页面中删除所有 post 的描述。并在 CONTEMPO THEME 中调整图像大小,例如特色博客图像(但中等大小)。 结帐精选 post 和另一个 post
Featured Post
现在所有 post 显示如下:
Another post
做这些改变。转到主题 > 编辑 HTML.
- 正在删除说明
.post-snippet.snippet-container { display : none; }
- 调整帖子图片大小。
搜索“.post-body .snippet-thumbnail”并删除下面的所有属性 class
.post-body .snippet-thumbnail { }
搜索“.post-body .snippet-thumbnail img”并赋予下面的属性class.
.post-body .snippet-thumbnail img { width: 100%; }
搜索“(max-width: 800px) 20vw, 128px”并将该标签替换为以下标签
<b:include data='{image: data:post.featuredImage, imageSizes: [256, 512, 945, 1684], imageRatio: "945:600", sourceSizes: "(min-width: 954px) 842px, (min-width: 801px) calc(100vw - 112px), calc(100vw - 64px)", enhancedSourceset: data:highRes }' name='responsiveImage'/>