Forums » Installation

What should be the code for this?

xmar
UNITED STATES
2010-03-09 03:59:54
Permalink Post
 

Hi,
What should be the code to align the menu titles to the right, like in this webpage
Thanks
xmar

richardn
UNITED KINGDOM
2010-03-09 04:02:27
Permalink Post
 

text-align: right;

xmar
UNITED STATES
2010-03-10 16:21:08
Permalink Post
 

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

richardn
UNITED KINGDOM
2010-03-10 23:34:02
Permalink Post
 

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.

arsondpi A
GREECE
2010-03-11 00:17:02
Permalink Post
 

Find this in your expanding menu

  1. function () {
  2.             items.show(speed);
  3. ¬†¬†¬†¬†¬†¬†¬†¬†}, function () {
  4.             items.hide(speed);
  5.         }

and change to

  1. function () {
  2.             items.slideDown(speed);
  3. ¬†¬†¬†¬†¬†¬†¬†¬†}, function () {
  4.             items.slideUp(speed);
  5.         }

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...

xmar
UNITED STATES
2010-03-11 21:48:45
Permalink Post
 

Hi arsondpi ,
Thanks your code worked perfect.
xmar

Showing 1 - 6 of 6 posts in Forum > Installation > What should be the code for this?
 

You need to be logged in to post.