Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

ask : float right without reverse order [solved]
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: ask : float right without reverse order [solved]
#28660
ask : float right without reverse order [solved] 12 Years, 6 Months ago Karma: 0
Give up on css.
Which css need to change to make float right without reverse order ?

eg.
home | contact us | about us

When i change
Code:

.ux-menu li {position:relative;float:left;}


to :

Code:

.ux-menu li {position:relative;float:right;}


menu became :
about us | contact us | home
Last Edit: 2012/05/29 01:16 By v75369.
The administrator has disabled public write access.
 
#28661
Re:ask : float right without reverse order 12 Years, 6 Months ago Karma: 760
Hello,

It is not possible with CSS changes. "float" CSS property makes another sense. It is used to specify position of a CSS element.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#28684
Re:ask : float right without reverse order[solved] 12 Years, 6 Months ago Karma: 0
it's solved (hope so) !! by adding simple float right tag to ul

Code:

.ux-menu,.ux-menu ul {list-style-image:none; ...


Code:

.ux-menu,.ux-menu ul {float:right;list-style-image:none; ...


Now menu is align right without order reverse
The administrator has disabled public write access.
 
Go to topPage: 1