Separate color options for text elements

I was hoping that the color options for the Header and Title (Default: Store Locator) could be differed from the subheadings, body text, and other text options - thanks!

1 Like

Hi there and welcome to the Community, @Braeden_Riley :waving_hand:

Thank you so much for the feedback!

I agree that it would be great to have separate color options right in the settings. We’ll try to consider this idea in the future, especially if more users upvote it.

As for now, you can change the title using this code in the Custom CSS field on the Style tab of your widget’s settings :slightly_smiling_face:

.global-styles,
:root {
	--title-color: red;
}

.global-styles,
[class*="directory-header__Container-sc"] > div {
  color: var(--title-color) !important;
}
1 Like