Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #697330

    Hey Kriesi Team,

    Mobile mode menu style of our website, looks fine, like below image:
    .

    – I want to have same menu style in tablet mode as well.
    Right now, it shows wrongly like this:
    .

    Regards,
    Sadegh

    #697335

    Hi Sadegh!

    Please add following code to Quick CSS

    @media only screen and (max-width: 990px) and (min-width: 769px) {
    #advanced_menu_toggle {
        background: white!important;
        right: 50px;
    }}

    Best regards,
    Yigit

    #697357

    Hey Yigit,

    Thanks a lot for the great help, it works great.
    And may I know how can I make the Mobile menu style from RTL mode (link) exactly like the English mode?
    Right now, it looks like this:
    .

    Regards,
    Sadegh

    #697362

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 990px) {
    .rtl #advanced_menu_toggle {
        top: 100px;
        right: 0;
    }}
    

    Best regards,
    Yigit

    #697375

    Hey Yigit,

    That was great, but it somehow made the Menu box (in RTL mode) sticks to the right of the page:
    (in tablet mode)
    .

    Regards,
    Sadegh

    #697384

    Hey!

    Please change the code to following one

    @media only screen and (max-width: 990px) and (min-width: 768px) {
    .rtl #advanced_menu_toggle {
        top: 100px;
        right: 50px;
    }}
    @media only screen and (max-width: 767px) {
    .rtl #advanced_menu_toggle {
        right: 0;
    }}

    Cheers!
    Yigit

    #697397

    Hi again,

    Thanks a lot as always, but now the menu box in mobile mode seems to have problem :)
    (in RTL mode)
    http://sl.uploads.im/d/u7k6T.png

    #697399

    Hey!

    Sorry about that, please use following one :)

    @media only screen and (max-width: 990px) and (min-width: 768px) {
    .rtl #advanced_menu_toggle {
        top: 100px;
        right: 50px;
    }}
    @media only screen and (max-width: 767px) {
    .rtl #advanced_menu_toggle {
        right: 0;
        top: 100px; 
    }}

    Cheers!
    Yigit

    • This reply was modified 8 years ago by Yigit.
    #697402

    Thanks a lot Yigit as being helpful like all the time :)

    (you may now close the thread please)

    Kind regards,
    Sadegh

    #697403

    Hi!

    You are welcome Sadegh, always happy to help :)

    Regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Tablet mode and Mobile mode style’ is closed to new replies.