This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

mobile navigation

  • Creator
    Topic
  • #1363
    f2t
    Member

    Hey,

    I seem to have messed up the mobile navigation on my site, I would like it to be more like the original rather then the current navigation. I just cant see where I have messed it up. can you point me in the right direction?

    http://www.gingermagic.co.uk/

    Thanks

    Toby

Viewing 2 replies - 1 through 2 (of 2 total)
  • Author
    Replies
  • #1369
    Jason Bobich
    Keymaster

    Looks like the same issue as before. You’re arbitrarily applying fixed widths to elements within the header.

    This seems to be effecting the navigation:

    .primary_light_blue #access ul {margin-top:98px; width: 940px; background:#00314E; height:48px; margin-left: 0px; }

    And also because you’re changing the font-size of the buttons, you’re overriding anything that came before in the theme’s responsive styles applied at different media queries. So, you need to account for that in your custom styles.

    /* Styles for Tablets */
    @media (max-width: 800px) {
    	.whatever { ... }
    	.whatever_2 { ... }
    	.whatever_3 { ... }
    	.whatever_4 { ... }
    }
    
    /* Styles for Mobile Devices */
    @media (max-width: 480px) {
    	.whatever { ... }
    	.whatever_2 { ... }
    	.whatever_3 { ... }
    	.whatever_4 { ... }
    }
    #1370
    Jason Bobich
    Keymaster

    I’m honestly not entirely sure what you did but I’d also have a look at whatever you’re doing here in header.php. You seem to have messed up the HTML markup a bit. I’m not sure if it’ll display consistently in all browsers now like IE that have trouble interpreting what you “meant” to write like Firefox and Chrome do a good job of.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The forum ‘Swagger Responsive WordPress Theme’ is closed to new topics and replies.