action bar

hey, 

I have an issue in my action bar, the phone number is come before the icon and is the same with the envelop icon. 
Its need to be in the opposite way, even that I use rtl format. 

There is any way to fix it? 
My url is : www.pay-less.co.il

bay the way, I use this code to move the
action bar to the right: #Action_bar .contact_details{float: left;}


I will appreciate your help,  

Comments

  • hey, 

    I have an issue in my action bar, the phone number is come before the icon and is the same with the envelop icon. 
    Its need to be in the opposite way, even that I use rtl format. 

    There is any way to fix it? 
    My url is : www.pay-less.co.il

    bay the way, I use this code to move the
    action bar to *the left  : #Action_bar .contact_details{float: left;}


    I will appreciate your help,  

  • Hi,

    to move contact details to the right, you need to use the following css:
    #Action_bar .contact_details { float: right !important; }
  • edited February 2017

    hey, 

    tnx for your response, but it wesn't my question
    .

    I want that the action bar stay in the left
    size, but I want that the envelop icon will be first and then the email address
    ( from left to right ) . right now the email adress come firest and than the icon ( i need the Opposite. 

    The same ask for the phone details. 

  • So you basically want to cheat RTL format using custom css right? Because right now, it works the way RTL supposed to work. So if you want to cheat it that way, you need to use custom css:
    #Action_bar .contact_details li > i { float: left !important; }
  • tnx a lot, now its great! 
Sign In or Register to comment.