Change colour and make text a bit bigger on wholesale sign in page

Topic summary

A store owner seeks help customizing their wholesale sign-in page, specifically wanting to make the “Log in to your account | Contact us to request a wholesale account” text larger and change its color to green (possibly a darker shade to match their site’s branding).

Current situation:

  • Using code adapted from an Envision.io tutorial
  • The page displays a heading for approved wholesale customers with conditional login/contact links
  • A screenshot shows the existing layout

Solutions provided:

Two community members offered CSS modifications:

  • Adding font-size:34px to enlarge the login/contact text
  • Applying color:green styling to the links and text
  • Using proper HTML structure with <center> tags

Follow-up issue:

The original poster successfully implemented the larger green text but now wants to make the “This page is approved for wholesale customers only” heading smaller. They attempted using font-size:24px on the <h1> tag but reported no visible change, suggesting a potential CSS specificity or syntax issue that remains unresolved.

Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

Hello,

This is my wholesale page: https://shoptwoblooms.com/pages/wholesale

This is the code I’m using (I got it from https://www.envision.io/blogs/ecommerce-pulse/80312001-how-to-add-a-wholesale-area-to-your-shopify-store-without-an-app. and then I fiddled around to get it to look a bit better. Don’t know code just try things and keep looking stuff up.

Is it possible to get the Log into your account | Contact us to request a wholesale account part a bit bigger? Then have the Log into your account | Contact us to request a wholesale account in green. Maybe the green on my page but that might be too light so maybe a darker green. Just not sure where to put it.


This page is for approved wholesale customers only.

{% unless customer %} Log in to your account | {% endunless %} Contact us to request a wholesale account.

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

please try with this code.

This page is for approved wholesale customers only.

{% unless customer %}

Log in to your account |

{% endunless %}

Contact us to request a wholesale account.

Hope you find my answer helpful!

Best regards,

Victor | PageFly

# This page is for approved wholesale customers only.

{% unless customer %}

Log in to your account |
{% endunless %}
Contact us to request a wholesale account.

@escherprint Try above code . It might be helpful for you !

1 Like

Thank you I didn’t want the first larger font green.

Thank you I had to add the


before your code because it was too close to the top. It looks great is there also a way to make the This page is approved for wholesale customers only smaller? I tried to doing this code but didn’t see a change:


This page is for approved wholesale customers only.

{% unless customer %} Log in to your account | {% endunless %} Contact us to request a wholesale account.