8 months ago
For the alignment of the whole menu that does not occupy the entire width of its containing block, it will by default be centered. You can alter it afterwards
by editing the downloaded CSS file: change the following centering specification:
ul#tabmenu { margin: 0 auto; }
to left alignment:
ul#tabmenu { margin: 0; }
or to right alignment:
ul#tabmenu { margin-left: auto; margin-right: 0;}