🎨Custom Styling Solutions

Simple solutions for the most common customization requests

What This Guide Does

This guide provides copy-paste CSS solutions for the most common styling requests we receive. Choose your context below, then find your specific need.

Which Method Do I Use?

circle-info

Two different contexts require different methods:

  • Styling widgets on YOUR WEBSITE β†’ Use the embed widget method

  • Styling YOUR PAGES on crowdwork.com β†’ Use the crowdwork.com method


Most Common Requests

Change Button Colors

The #1 most requested customization. Here are ready-to-use solutions:

For Widgets on Your Website

Add this CSS to your website:

<style>
/* Change button colors - simple version */
.btn-primary {
  background-color: #your-brand-color !important;
  border-color: #your-brand-color !important;
}

.btn-primary:hover {
  background-color: #your-hover-color !important;
  border-color: #your-hover-color !important;
}

.btn-light {
  background-color: #your-secondary-color !important;
  border-color: #your-secondary-color !important;
}
</style>

Example with real colors:

For CrowdWork.com Pages

circle-exclamation

Add this to your Theatre Dashboard β†’ Theatre Details β†’ Custom Pixel Tracking section:


Change Fonts

For Widgets on Your Website

For CrowdWork.com Pages


Change Background Colors

For Widgets on Your Website

For CrowdWork.com Pages


Complete Brand Theme Examples

For users who want comprehensive brand integration, here are complete themes using CSS variables:

Theatre Brand Theme

For Widgets on Your Website

For CrowdWork.com Pages

Additional Theme Color Sets

Just replace the :root section with these color combinations:

Ocean Theme: Ocean Theme Colors

Minimalist Theme: Minimalist Theme Colors

Forest Theme: Forest Theme Colors


Need More Advanced Control?

For comprehensive styling documentation:

For Widgets on Your Website

circle-check

For CrowdWork.com Pages

circle-info

β†’ CrowdWork.com Page Styling (Community Guide)arrow-up-right

Basic customization examples for your theatre's pages on crowdwork.com. Note: Community resource with limited official support.


Troubleshooting

Styles not applying?

  • Add !important to CSS rules

  • Clear browser cache and refresh

  • Make sure CSS comes after your widget code

Colors look different than expected?

  • Test in different browsers

  • Check that color codes are spelled correctly

  • Ensure contrast is accessible

Need to find the right CSS class?

  • Right-click on the element β†’ "Inspect" to see the actual class names

  • Use browser developer tools to test changes


Need specific help? Contact our support teamarrow-up-right - while we can't troubleshoot custom styling implementations, we're happy to help with general guidance and feature questions!

Last updated

Was this helpful?