Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个朋友的 Gridly 主题的 Wordpress。他让我把网站放在中心。
我已经完成了大部分工作,但我被困在菜单的中心位置。我认为这可能是因为 CSS 告诉它浮动:左。不过我不确定。
这是一个链接:www.krenaud.fr
在light.css第 31 行的文件中,width:770px设置为 100% 并添加margin:0 auto;
light.css
width:770px
margin:0 auto;
最简单的选项似乎是将菜单容器设置为:
.menu-menu-principal-container { display: inline-block; }
看起来应该可以使菜单居中。