Title: Mobile menu customization
Last modified: February 12, 2019

---

# Mobile menu customization

 *  Resolved [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-customization/)
 * hello.
 * can i customize mobile menu whithout plugin ?
    like this … [**Menu** | **logo**
   | **Phone** | **Search**] [mobile menu](https://prnt.sc/mk71r0)
 * thank you 🙂
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmobile-menu-customization%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11199207)
 * ok… i made some “test”…
    it seem that is working: Source:** [https://generatepress.com/forums/topic/site-title-in-navigation-bar/](https://generatepress.com/forums/topic/site-title-in-navigation-bar/)**
 * CSS:
 *     ```
       @media only screen and (max-width: 850px) {      
           .main-navigation .site-logo{
           float: right;
           line-height: 20px; /* Adjust this to your menu item height */
           margin-right: 5.5em;
           margin-top: 10px;
   
       } 
       ```
   
 * PHP:
 *     ```
       <?php
           /* 
            * generatepress logo mobile
       	 * Source: https://generatepress.com/forums/topic/how-to-create-a-menu-bar-with-logo/
            */  
       add_action('generate_inside_navigation','generate_navigation_logo');
       function generate_navigation_logo()
       {
       ?>
       	<div class="site-logo mobile-image">
       		<a href="tel:0102030405"><img src="phone image here" alt="mobile"></a>
       	</div>
       	<div class="site-logo mobile-image">
       		<a href="link to home"><img src="logo here" alt="logo"></a>
       	</div>
       <?php
       }
       ?>
       ```
   
 * two classes, “site logo” and “mobile-image”
    RESULT: [the result here…](https://prnt.sc/mkas6w)
 * tell me, if that correct ?
 * re… thank you 😉
 *  [Leo](https://wordpress.org/support/users/leohsiang/)
 * (@leohsiang)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11199335)
 * Hi there,
 * You are on the right track 🙂
 * I think this hook would work better though as it will only show up on mobile:
   
   [https://docs.generatepress.com/article/generate_inside_mobile_menu_bar/](https://docs.generatepress.com/article/generate_inside_mobile_menu_bar/)
 * Let me know if you need more info 🙂
 *  Thread Starter [root09](https://wordpress.org/support/users/root09/)
 * (@root09)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11204132)
 * hi Leo…
    thank’s for the “tip” 🙂
 *     ```
       <?php
           /* 
            * generatepress logo mobile
       	 * Source: https://generatepress.com/forums/topic/how-to-create-a-menu-bar-with-logo/
            */  
       add_action('generate_inside_mobile_menu_bar','generate_navigation_logo');
       function generate_navigation_logo()
       {
       ?>
       	<div class="site-logo">
       		<a href="tel:0102030405"><img src="phone image" alt="mobile"></a>
       	</div>
       	<div class="site-logo">
       		<a href="https://auto.cazes.info"><img src="My logo here" alt="logo"></a>
       	</div>
       <?php
       }
       ?>
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Mobile menu customization’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/generatepress/3.6.1/screenshot.
   png)
 * GeneratePress
 * [Support Threads](https://wordpress.org/support/theme/generatepress/)
 * [Active Topics](https://wordpress.org/support/theme/generatepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/generatepress/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/generatepress/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [root09](https://wordpress.org/support/users/root09/)
 * Last activity: [7 years, 3 months ago](https://wordpress.org/support/topic/mobile-menu-customization/#post-11204132)
 * Status: resolved