Tab Menu > Posts >

 

Force menu not to center

Jim
8 months ago
Viewed: 775
1
Useful
I build the Tab Menu with width:80%. I found it is always in the center of the containing block. How can I force it to the left or to the right?

8 months ago
Milo   Edit
1

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;}



New Answer