Chuyển Navigation Menus ra giữa trong theme Genesis

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]
Screen-Shot-2014-04-28-at-9.28.00-AM

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]

Leave a Comment