我一直在尝试为我的WordPress博客设置一个标题图像,但由于图像变小,我无法让它在小屏幕上正常工作。
此外,当您单击移动版本上的菜单时,图像也会下降。
<header id="masthead" class="site-header" style="background-image: url(<?php header_image(); ?>);background-repeat:no-repeat; background-size:contain; background-position:center;">
.site-branding {
padding: 85px 0;
}
header.site-header{
margin-bottom: 40px;
}下面是供参考的博客:http://semdesculpas.org/
发布于 2018-01-11 14:16:01
您可以设置site-branding的背景。
<div class="site-branding row text-center" style="background-image: url(http://semdesculpas.org/wp-content/uploads/2018/01/cropped-cropped-Untitled-1-1-1-2.png);background-repeat:no-repeat;
background-size:contain;
background-position:center; margin-top: 20px">结果:

https://stackoverflow.com/questions/48197820
复制相似问题