I’ve select header style 10 and the menu should be centered.
Instead it is displayed aligned to the left. As for the style 9 …
Maybe because the menu is on two rows?
How can I force the centering via css?
and how change color of menù line?
see image
https://www.awesomescreenshot.com/image/3875767/2ffb9af4019ccb85f7e3923265259bc8
tnx
Hi,
If there are many menu items, they will fall to a second row. You could stretch the header menu in the theme panel – http://prntscr.com/mnnf0q
That would produce better results when using many menu items.
For the main menu there are color settings in the theme panel – http://prntscr.com/mnnfvq
Let me know if you have more questions.
Thanks
Hi Simion, tnx
Now I’ve Stretched menu and is better on large screen because I can not see it in two lines anymore.
But on smaller screens I can still see on two lines (which is fine too), but the problem is that when it goes on two lines it is NOT more centered but aligned to the left.
Only this is not good.
I would like a css code to force the centering of the text in this case too.
tnx
Hi,
So centered like this? – http://prntscr.com/mohz1j
Try this code for it
.td-header-style-10 .sf-menu {
text-align: center;
}
.td-header-style-10 .sf-menu li {
float: none;
display: inline-block;
}
Thanks