Tagged: ,

Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #905715

    Hi,
    I would like to move language icons to the top left on mobile, and move phone number to the top right. Is there an option in the theme, or you can provide me with some CSS? :)

    #905753

    Hey andrijadulovic,

    Are you looking to have it flush with the social media icons or beneath them?

    Best regards,
    Jordan Shannon

    #905903

    I would to see it all in one row.

    #906695

    Hi,

    Please use the following css codes.

    @media only screen and (max-width: 767px) {
      .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
          float: left;
          width: 100%;
          text-align: left;
          margin: 0 auto;
          position: fixed;
      }
    
      .responsive .phone-info {
          float: right;
          width: 100%;
          clear: both;
          text-align: right;
          position: fixed;
          right: 20px;
      }
    }
    

    Best regards,
    Ismael

    #906740
    This reply has been marked as private.
    #907392

    Hi andrijadulovic,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
      .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
        width: 30%;
        float: left;
        margin-top: -16px;
      }
       #top #header_meta .phone-info {
           width: 30%;
           float: right;
           margin-top: -32px;
       }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #910767

    Did you even check this? I put the code in CSS editor and it shows 5 errors. And it is only moving the phone number, not the flag.

    #911290

    Hi,

    I loaded your web site and the code is not there, can you check with us please if you have added so we can be able to debug?

    Best regards,
    Basilis

    #911575

    I am not going to put code that is not working on my website. You can try this code in your own CSS editor, it will flash you with several bugs. All I am asking is for you to check the code before you send it to me. I know that using inspector you can test what you are sending.

    #911912

    Hi,

    The code is not wrong.
    A web editor can show different things but they are not valid.
    I tried Victorias code and it is working fine.

    Best regards,
    Basilis

    #911948

    It is not good, because the flag is fading out while resizing the screen and it is not showing. I added the code and there is no flag on small screen, for example iPhone 5S. Please check it.

    #912062

    Hi,

    The css codes are working properly on our end. Please provide the login details in the private field and we’ll test it.

    Best regards,
    Ismael

    #912208

    OK, I got you the credentials.

    #913051

    Hi,

    I’m sorry for the late response. Please set the user to admin so that we can edit the css modifications.

    Best regards,
    Ismael

    #913197

    Done.

    #913512

    Hi BC_mne,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
      .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
        width: 50%;
        float: left;
        margin-top: -16px;
        margin-left: 11%;
      }
       #top #header_meta .phone-info {
           width: 30%;
           float: right;
           margin-top: -32px;
       }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #913648

    Just for you to know, this is what I wanted to achieve:

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
    width: 50%;
    float: left;
    margin-top: -16px;
    }
    #top #header_meta .phone-info {
    width: 30%;
    float: right;
    margin-top: -32px;
    margin-right: -16px
    }
    }

    Thanks. You can close this now. Best wishes!

    #913766

    Hi,

    Great, glad you got it working and thanks for sharing. I’ll close this for now, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Change position of elements in the top bar on mobile’ is closed to new replies.