Content dock settings not working

I’m wondering why my Content Dock heading and button colors are not working?

It looks like they might be inheriting my site’s default heading + button colors instead of the settings in the Content Dock area, see screenshot: https://s1.postimg.org/5ndzzw23a7/content-dock-colors.jpg

content dock is on home page: https://tinyurl.com/y6ufsbd8

here’s a screenshot of my content dock settings: https://s1.postimg.org/1wc30h4kn3/content-dock-settings.jpg

thanks

Hello There,

Thanks for writing in!

The close button color is correct.

The submit button will follow the global settings in X > Launch > Options > Buttons.

Your heading color is because of your custom html.

Hope this helps.

Thanks I guess it must have been a caching issue. How do I override the button settings for this one particular instance? Also what’s the purpose of having an option to change the button color if your global settings are just going to override it?

Hi there,

Please try this CSS selector:

.tco-content-dock input[type="submit"] {

}

You can add the CSS codes to change the button border color and the text color.

Hope this helps.

can you post an example code? what specific class does the submit button use?

Hi there,

What I provided is the CSS selector that targets the button. You just need to add the CSS style you want to add such as the background-color, color, border-color.

Thanks, this works. What code is used for the hover of the button?

Hi there,

It should be:

.tco-content-dock input[type="submit"]:hover {

}

Hope this helps.

Thanks, this works perfect.

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.