How can I align my logo and menu icon on a mobile device

chris

I am using WordPress , I have a responsive theme that I am using as well. When I view my website on a mobile device, the menu turns into an icon with 3 horizontal lines; its a slide out menu.

On the mobile device the menu is above the 3 lines towards the left instead of them aligning with with each other.

This is the code for the menu icon:

.section-navi .pl-nav > li > a {
    line-height: 50px;
    padding: 0 13px;
    /* opacity: .7; */
}

and this is the code for the logo:

.section-navi .navi-container {
    height: 36px;
    padding: 7px;
}

please visit: surveillanceshack.com and view on a mobile device.

halfzebra

Try adding the following code:

You might pick a suiting @media query here, if you're targeting iPhones.

Almost every phone starts at min-device-width: 320px, it's up to you to decide what you want as your top limit.

// iPhone 5 & 5S in portrait & landscape   
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  .section-navi .navi-container {
    min-height: 50px;
    padding-right: 0;
    box-sizing: border-box;
    text-align: left;
  }
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I align my icon to be in center of my square box?

From Dev

How can I add a menu-icon on mobile devices only?

From Dev

How can I add an icon to my custom context menu item in Windows 7?

From Dev

How to vertically align logo and menu in Foundation?

From Dev

How can I work around the expired Sectigo certificate on my old mobile device?

From Dev

How can I make my nav bar display properly when being zoomed in mobile device?

From Dev

How to display logo in center at boostrap for mobile device?

From Dev

How can I add a different menu to the mobile version of my bootstrap theme in WordPress?

From Dev

How can I properly align my labels?

From Dev

How can I align my form the left

From Dev

How can I align my images with the text?

From Dev

Why can't i navigate with my hamburger-menu on mobile?

From Dev

how can I align font awesome icon in bootstrap button?

From Dev

how can I align font awesome icon in bootstrap button?

From Dev

I can't vertical align a logo on Wordpress

From Dev

How can I whitelist my Android device?

From Dev

How to i keep my logo from overlapping on to my main menu bar when i open on an tablet

From Dev

Logo in the mobile menu bootstrap

From Dev

how can i show android:icon in android menu ( android studio)

From Dev

KnpMenuBundle - how can i set an icon class to each elements of menu?

From Dev

How can I create a desktop icon with a custom context menu

From Dev

how can i put badge icon within the app in menu bar?

From Java

How can i add a logo in my PDF Output (R Shiny)?

From Dev

How can I put an image (logo) on my dashboardHeader()?

From Dev

How can I stop a JS function from running on a mobile device?

From Dev

How can I stop a JS function from running on a mobile device?

From Dev

social icon hover and center align the dropdown list in my menu bar

From Dev

How can I get my Color Icon to display on my GUI?

From Dev

How can I add parent menu description to my Wordpress menu?

Related Related

  1. 1

    How can I align my icon to be in center of my square box?

  2. 2

    How can I add a menu-icon on mobile devices only?

  3. 3

    How can I add an icon to my custom context menu item in Windows 7?

  4. 4

    How to vertically align logo and menu in Foundation?

  5. 5

    How can I work around the expired Sectigo certificate on my old mobile device?

  6. 6

    How can I make my nav bar display properly when being zoomed in mobile device?

  7. 7

    How to display logo in center at boostrap for mobile device?

  8. 8

    How can I add a different menu to the mobile version of my bootstrap theme in WordPress?

  9. 9

    How can I properly align my labels?

  10. 10

    How can I align my form the left

  11. 11

    How can I align my images with the text?

  12. 12

    Why can't i navigate with my hamburger-menu on mobile?

  13. 13

    how can I align font awesome icon in bootstrap button?

  14. 14

    how can I align font awesome icon in bootstrap button?

  15. 15

    I can't vertical align a logo on Wordpress

  16. 16

    How can I whitelist my Android device?

  17. 17

    How to i keep my logo from overlapping on to my main menu bar when i open on an tablet

  18. 18

    Logo in the mobile menu bootstrap

  19. 19

    how can i show android:icon in android menu ( android studio)

  20. 20

    KnpMenuBundle - how can i set an icon class to each elements of menu?

  21. 21

    How can I create a desktop icon with a custom context menu

  22. 22

    how can i put badge icon within the app in menu bar?

  23. 23

    How can i add a logo in my PDF Output (R Shiny)?

  24. 24

    How can I put an image (logo) on my dashboardHeader()?

  25. 25

    How can I stop a JS function from running on a mobile device?

  26. 26

    How can I stop a JS function from running on a mobile device?

  27. 27

    social icon hover and center align the dropdown list in my menu bar

  28. 28

    How can I get my Color Icon to display on my GUI?

  29. 29

    How can I add parent menu description to my Wordpress menu?

HotTag

Archive