我目前正在尝试以WordPress主题设计自己(并且是一个新手), 但我无法集中整个博客。供参考, 这是现在的样子。
以前所有内容都正确居中, 然后更改了整个博客的宽度, 然后菜单突然没有占据最大宽度, 博客和侧边栏也不再居中。我很乐意为此提供任何帮助。提前致谢! 🙂
这是我用于博客的代码:
div#container
{
margin: 0px auto;
width: 1050px;
min-width: 1050px;
max-width: 1050px
}
div#content
{
max-width: 640px;
margin-right: auto !important;
margin-left: auto!important;
margin-bottom: 30px;
float: left;
padding: 30px 30px 30px 30px;
background-color: white!important;
}
对于侧边栏:
div#primary
{
/* Primary Widget Area DIV */
padding: 10px 25px 30px 25px !important;
margin: 0px auto!important;
float:right;
background-color: white!important;
max-width: 260px!important;
}
对于菜单:
.menu {
background-color: #676565;
margin: 0px auto;
width: 100%!important;
list-style: none;
padding: 10px 10px 10px 10px;
text-align: center;
text-transform: uppercase;
letter-spacing: 2.5px;
font-family: 'Tw Cen MT'!important;
position: relative;
}
#1
你可以尝试将body标签设置为样式, 以快速解决问题。
示例如下
html{
background-image: url("https://i.imgur.com/urEcvAw.png"); background-position: center center; background-size: 200px!important; background-size: cover; background-repeat: repeat; background-attachment: fixed; margin: 0;
}
body{
max-width:160px;
margin:0 auto;
background:#fff;
}
.sample{
text-align:center;
background:#fff;
height:80px;
width:100%;
}
<html>
<head>
</head>
<body>
<div class="container sample">
<p>here all websites header, main block footer comes.. </p>
</div>
</body>
</html>
希望对你有帮助。
#2
你的.menu类设置为position:relative;
因此, 你必须在.menu类中添加以下几行:
左:0;对:0;保证金:自动;宽度:100%;
我相信这应该可以解决你的问题。
评论前必须登录!
注册