I have a CSS Horizontal Menu in a table cell. I have set the cell’s alignment to align=right.. and the CSS Menu is in that cell but it not right aligned… see the code HERE… I want to make this menu right aligned
I have a CSS Horizontal Menu in a table cell. I have set the
Share
The UL is aligning to the right, but it’s a block element so that doesn’t matter. Your list elements are floated left within that, which is overriding the alignment. Float them to the right and you should be fine.