Skip to content

Mobile & Responsive FAQ

Quick answers about mobile display and responsiveness.


Yes, fully responsive and mobile-first. Tested on:

  • iOS (iPhone, iPad)
  • Android (phones, tablets)
  • All modern browsers

At the hamburger breakpoint (768px by default) and below:

  • Navigation collapses to a hamburger icon
  • Tap to open the mobile menu drawer
  • Touch-optimized with larger tap targets

The breakpoint is adjustable in the Customizer (see “Can I change the mobile menu breakpoint?” below).


Common fixes:

  1. Clear all caches - Browser, plugin, CDN
  2. Disable JS minification in caching plugin
  3. Check for JavaScript errors - Browser console (F12)
  4. Test in incognito mode - Rules out extensions
  1. Check custom CSS - Your CSS may not be responsive
  2. Use browser dev tools - Find exact breakpoint where it breaks
  3. Add mobile CSS:
@media (max-width: 767px) {
/* Your mobile fixes */
}
  1. Appearance > Customize > Typography > Body
  2. Increase Font Size
  3. Use the mobile preview icon to check

Or add CSS:

@media (max-width: 767px) {
body { font-size: 16px; }
}

Add to Additional CSS:

img {
max-width: 100%;
height: auto;
}

BuddyX Pro does not have a separate mobile logo upload field. It uses the one logo set in Appearance > Customize > Site Identity, scaled responsively. To swap it on small screens, upload the mobile image to the Media Library and swap it with CSS:

@media (max-width: 767px) {
.site-branding img { content: url('https://yoursite.com/mobile-logo.webp'); }
}

Use CSS:

@media (max-width: 767px) {
.element-to-hide { display: none; }
}

Quick test:

  • Browser dev tools (F12 > Toggle device toolbar)
  • Customizer preview (mobile icon at bottom)

Accurate test:

  • Real iPhone and Android devices
  • BrowserStack or LambdaTest (online tools)

Breakpoint Device
1200px+ Desktop
1024px Tablet landscape
768px Tablet portrait
480px Large phone
320px Small phone

Yes, from the Customizer - no code required:

  1. Go to Appearance > Customize > Site Header
  2. Set the Hamburger Menu Breakpoint slider (in pixels)
  3. Click Publish

This is the screen width where the header switches from the desktop menu to the hamburger menu. The default is 768px, and the slider accepts values from 768 to 1600.



Got a question? We’re a friendly team - happy to help. Email support@wbcomdesigns.com