Nếu bạn muốn đem Navigation Menus ra chính giữa?
Cách làm như sau:
Thêm đoạn code sau vào file style.css
trong thư mục child theme của genesis
[php]/* To center Primary and Secondary Navigation */
.nav-primary,
.nav-secondary {
text-align: center;
}[/php]
Chú ý: Code đã thử với theme StudioPress themes.
Đối với theme Prose:
Thêm đoạn code sau:
[css]#nav ul, #subnav ul {
float: none;
width: auto;
display: table;
margin: 0 auto;
}[/css]