Episode 3 of 12

Creating A Mobile PSD Mockup

Design a mobile version of the website mockup in Photoshop to guide your responsive development.

Creating A Mobile PSD Mockup

Before jumping into code, it's essential to have a mobile design reference. If the designer only provided a desktop PSD, you'll need to create a mobile version yourself. This guides your responsive CSS decisions.

Why Create a Mobile Mockup?

  • Visual reference — see exactly how the layout should look on small screens
  • Planning — decide how elements should reflow, stack, or hide
  • Client communication — show stakeholders the mobile experience before coding
  • Faster development — no guesswork when writing media queries

Step 1: Create a New Document

  1. In Photoshop, go to File → New
  2. Set the width to 375px (iPhone standard) or 320px (minimum mobile width)
  3. Set the height to 2000–3000px (you'll crop later — mobile pages are tall due to stacking)
  4. Set resolution to 72 PPI (standard for screens)
  5. Color mode: RGB

Step 2: Rethink the Layout

On mobile, most multi-column layouts become single-column. Here's how common desktop patterns translate:

Desktop PatternMobile Pattern
Horizontal navigationHamburger menu
3-column gridSingle column, stacked
Sidebar + contentContent only (sidebar hidden or below)
Large hero imageCropped or resized hero
Multi-row footerStacked footer sections

Step 3: Rebuild Each Section

Header / Navigation

  • Replace the full navigation bar with a hamburger icon (☰)
  • Keep the logo — but make it smaller
  • The nav links will be hidden and revealed on tap

Hero Section

  • Use a portrait-oriented version of the hero image (or crop it)
  • Stack the headline, subtext, and CTA button vertically
  • Increase text size relative to the container for readability

Main Content

  • Convert multi-column cards/grids into single-column stacks
  • Make cards take full width with generous vertical spacing
  • Ensure images are responsive (width: 100%)

Footer

  • Stack footer columns vertically
  • Center-align text and links
  • Make contact info and social links easily tappable

Step 4: Typography Adjustments

ElementDesktop SizeMobile Size
H1 Heading48px28–32px
H2 Heading36px22–26px
Body text16px14–16px
Nav links14px18px (larger for touch)
Buttons16px16–18px with more padding

Step 5: Touch-Friendly Sizing

Mobile users tap with their fingers, not a mouse cursor. Ensure:

  • Minimum tap target: 44 × 44px (Apple's recommendation)
  • Adequate spacing between links so users don't accidentally tap the wrong one
  • Buttons should be full-width on mobile for easy tapping

Step 6: Export the Mobile Mockup

  1. Trim the canvas: Image → Trim → Transparent Pixels
  2. Save as PSD for future editing
  3. Also export as PNG or JPEG for quick reference while coding

Key Takeaways

  • Always create a mobile mockup before writing responsive CSS
  • Mobile layouts are primarily single-column with stacked elements
  • Desktop navigation becomes a hamburger menu on mobile
  • Typography and tap targets must be adjusted for small screens
  • A mobile mockup eliminates guesswork and speeds up development