Using CSS to Target Different Forms on Same Wordpress Page

Hi,

I have two HubSpot forms that I’m embedding on the same Wordpress page. The CSS is working fine on both forms. However, I want to target each form so that the button on form A, for example, is a different color than form B. Does anyone have any advice for using CSS to target each form uniquely?

Thanks!

M.

Wrap each in a different div. Then target the button like:

div.classone form button {

// Styling

}

div.classtwo form button {

// Different Styling

}


Barry Grennan

Freelance HubSpot CMS Developer

Website | Contact

You are awesome. Thanks so much!