A website that looks cheap doesn't necessarily have bad design. More often, it has good design with two or three specific failures that undermine the whole. The good news: most of these failures are fixable without a redesign.
Here are the eight most common ones and exactly what to do about each.
1. Typography hierarchy failures
Typography is the single biggest differentiator between sites that feel polished and sites that feel amateur. Most startup sites have two problems:
Too many weights. Using Regular, Medium, SemiBold, Bold, and ExtraBold across a site signals lack of constraint. Pick two: one for headings (typically Bold or SemiBold), one for body (Regular). If you need a third, Medium for UI labels.
Inconsistent sizing. A site where H2s vary in size from section to section, or where body text is 14px in one component and 16px in another, reads as unfinished. Define a type scale and enforce it: 12, 14, 16, 20, 24, 32, 48, 64. Nothing else.
The fix: Open your site's CSS and count how many font-size and font-weight values appear. If it's more than eight sizes and three weights, you have a typography problem. Consolidate.
2. The stock photo problem
Stock photography is immediately identifiable to everyone who has spent more than an hour on the internet. The smiling diverse team around a conference table, the laptop open on a coffee shop table, the hands typing on a keyboard — these images communicate nothing about your product and everything about your inability to invest in real visuals.
The fix for limited budgets:
Option 1: Don't use photography. A bold typographic hero with a short, specific claim looks better than a generic stock photo. Many excellent sites use no photography at all.
Option 2: Use product screenshots. If your product exists, show it. A real screenshot of your dashboard annotated with callouts is more credible than any stock image.
Option 3: Use illustrations. Custom illustration is expensive but timeless. Tools like Blush.design or a custom illustrator on Contra can produce brand-specific illustrations that don't look like anyone else's.
Option 4: Use abstract visuals. Gradients, geometric patterns, or CSS-generated visuals are better than bad photography. They don't communicate anything specific, but they also don't signal generic.
3. Colour inconsistency
Colour inconsistency is one of the fastest signals of an amateur site. The specific failure mode: using slightly different shades of the same colour across components because no one defined a colour system.
The primary button is #2563EB. The hover state is #1D4ED8. The link colour is #3B82F6. The active nav item is #1E40AF. These are all "blue" but they're not the same blue, and the brain registers the inconsistency even when the user doesn't consciously notice it.
The fix: Define three to five colours. Name them. Use only them. A minimal colour system: one primary (your brand colour), one neutral (grey scale from white to near-black), and one semantic (red for error, green for success, amber for warning). Everything else is a variation of these three.
If you're on Webflow, this is CSS variables in site settings. If you're on Next.js, this is your Tailwind config or CSS custom properties. Define them once, use them everywhere, never hardcode a hex value outside the system.
4. CTA button copy laziness
"Learn more" is the worst call to action in existence. It says: we don't know what you should do, so do something noncommittal. "Submit" is the second worst. "Click here" is the third.
Button copy is a micro-commitment. Users read it and ask: is this worth clicking? "Learn more" gives them no reason to say yes.
The fix: Replace button copy with action + outcome.
- "Learn more" → "See how it works" or "Read the case study"
- "Get started" → "Start your free trial" or "Build your first project"
- "Contact us" → "Book a 20-minute demo" or "Get a custom quote"
- "Submit" → "Send my question" or "Create my account"
The specificity of the action tells users exactly what clicking will do. This alone often improves click rates measurably.
5. Missing footer trust signals
The footer is the last thing users see before they decide whether to scroll back up and convert or leave. Most startup sites waste this space with a minimal link list and a copyright line.
Users who scroll to the footer are still evaluating. They're looking for the signals that answer: can I trust this company?
What should be in your footer:
- Company address (even if it's a registered address — it means you exist)
- Contact email (not a form link — an actual email address)
- Privacy policy and terms of service links (required for trust, required for legal)
- Security or compliance signals if relevant (SOC 2, GDPR, etc.)
- A secondary CTA (the same one as the hero, repeated)
- Social links if your social presence is strong (don't link to an abandoned Twitter account)
The footer doesn't need to be elaborate. It needs to signal legitimacy.
6. Social proof placement errors
Social proof is on most startup sites. But placement matters as much as presence.
Common placement mistakes:
- Logo wall buried below three feature sections — users who would be convinced by the logos don't scroll that far
- Testimonials without photos — text-only testimonials read as fabricated
- Testimonials without titles and companies — "John D., Product Manager" could be anyone
- A single testimonial — one quote looks cherry-picked; three or more looks like a pattern
The fix:
- Put aggregate social proof (star rating, user count) within the first viewport
- Put company logos in the second section, not the fifth
- Attach faces, full names, titles, and company names to every testimonial
- Use at least three testimonials, ideally from recognisably different company types
7. Mobile viewport problems
More than half of your visitors are on mobile. Sites that look excellent on desktop and break on mobile are signalling that you don't care about half your visitors.
The specific failures that make mobile sites look cheap:
Horizontal overflow. Content that extends beyond the viewport edge creates a horizontal scrollbar. This happens most often with fixed-width elements, code blocks, and table layouts.
Tiny tap targets. Buttons and links under 44px height are hard to tap reliably. Apple's HIG and Google's Material both specify 44–48px minimum.
Text that doesn't scale. Hero headlines that are 72px on desktop become 72px on mobile and require horizontal scrolling. Use responsive font sizes (clamp() in CSS or Tailwind's responsive prefixes).
The fix: Test your site on a real mobile device, not browser DevTools. DevTools mobile simulation doesn't catch every real-device issue. Send the URL to your phone and spend five minutes clicking through it.
8. Page speed perception
The perception of quality correlates with perceived load speed. A site that loads in 3 seconds "feels" lower quality than a site that loads in 1.2 seconds — independent of design quality.
This is measurable. Google's research on the correlation between load time and user perception of site quality shows consistent results: slower sites are rated lower quality even when design is held constant.
The single most impactful fix: optimise your hero image. Convert it to WebP, add fetchpriority="high", and preload it. This single change moves most marketing sites from "slow" to "fast" on mobile.
Beyond the hero: remove third-party scripts you don't actively use. Every chat widget, analytics library, and A/B testing tool that fires on page load adds weight. Audit what's actually running on your site and remove anything you haven't checked in the last 90 days.
The order to fix them
Not all eight problems carry equal weight. Fix in this order:
- Typography — highest perceived quality impact for lowest effort
- CTA button copy — most direct impact on conversion
- Mobile viewport — affects half your visitors
- Page speed — affects ranking and bounce
- Colour consistency — requires a design system but improves polish significantly
- Social proof placement — easy to move, high conversion impact
- Stock photography — requires finding alternatives, but big credibility improvement
- Footer trust signals — quick to add, low but consistent impact
All eight are implementable without a full redesign. Most are one afternoon of work.
Want a specific audit of your site's credibility problems? Start a conversation — we'll look at your site and tell you exactly what's costing you.