Skip to main content
WPOS will style a site for you, but it does not invent your brand. For agency-grade results you tell it your standards explicitly, and you keep control of the details that matter most: color, type size, spacing, and the logo.

Pin your brand explicitly

WPOS does not auto-apply a brand kit. Give it your exact specifications and it will hold to them. The more precise you are, the less you repeat yourself.
Use these brand colors: primary #1D2327, accent #3858E9, text #4A4A4A.
Headings in Inter Tight, body in Inter. Use our real logo, not an icon plus text.
Hand it hex codes, not color names. “Make it blue” drifts; “#3858E9” does not. The same goes for fonts and the actual logo file.

Fix sizing with targeted CSS

A common surprise: WPOS tends to build text smaller than an agency would. The fix is to tell it your target sizes in pixels, and apply them to specific elements rather than blanketing the whole page. When a theme or builder fights you on specificity, a targeted rule with !important on a specific selector wins without affecting everything else:
#ewb-block-1 .cpl-topbar a {
  font-size: 1.25rem !important;
}
Then ask WPOS to do the same for the other elements you care about:
The text is too small. Set the top bar links, buttons, and eyebrow labels to the
sizes above, using targeted CSS on each element rather than a global override.
Prefer targeted selectors over a site-wide font-size override. A global change has side effects you will spend longer undoing than the original fix.

Work element by element

Brand and styling fixes are exactly where the click-first habit pays off. Click the heading, the button, or the section in the live preview, then ask for the size, color, or spacing change. WPOS knows precisely which element you mean. See The Command Center.
Once the homepage looks right, reuse it as the reference for every other page so the whole site stays consistent. See Build a page.