在…上my website, 我怎样才能缩小与自行车运动员的照片尺寸?目前,我认为它太大了。
How to decrease picture size
1 个回复
最合适的回答,由SO网友:thebigtine 整理而成
您需要将此css添加到子主题或安装自定义css插件
.blackwell_top_image {
height:400px; //change this to whatever height you want the image to be
overflow:hidden;
}
必须这样做,因为图像宽度设置为100%,所以在图像上设置高度会扭曲图像。因此,我们将css添加到父容器中,并隐藏图像的其余部分。