Archived topic
Navigation : size element
3 replies · Started by Thierry on July 4, 2018
I want fixed all element of menu with 120px
In simple css i have this :
.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .mobile-bar-items a{width:12px}
but don't work.
how i can do this ? thx
Hi there,
try:
.main-navigation ul li, .mobile-bar-items a {
width:120px;
box-sizing: border-box;
}
great, it's ok, thanks
did it work or did you give up :) its a pain elements that are mainly sized by padding, the box-sizing property keeps the padding inside the container size, so it dont grow, but i can imagine 120px may get a little tight for menu items.