Hi,
What should be the code to align the menu titles to the right, like in this webpage
Thanks
xmar
text-align: right;
Thanks richardn,
That was easy and it worked!
The only thing I notice is that on Safari, Opera, Firefox and Chrome now the menu text flies from left to right when clicked instead of moving down which I like more.
IE is fine (who would think of), thats the way I like it.
Which will be the code to make the other browsers make the menu move from up to down instead of flying from left to right and of course keeping the "text-align: right;."
Thanks again for the great support!
xmar
Webpage
Hi Xmar. I don't know, I'm only a beginner with this stuff. But I've seen the 'flying from left to right' behaviour on many indexhibit sites, so I guess it's the default look when using expanding menus with text-align right. Like you, I don't care for it - too funky. You could minimize the effect by speeding up the action of the expanding menu.
Find this in your expanding menu
function () {            items.show(speed);        }, function () {            items.hide(speed);        }
and change to
function () {            items.slideDown(speed);        }, function () {            items.slideUp(speed);        }
And people try searching the web for these things - a year ago, I couldn't even comprehend what these things do... Now I sort of do, but I keep looking into it...
Hi arsondpi ,
Thanks your code worked perfect.
xmar
You need to be logged in to post.
