Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS mailchimp subscription form Reply To: mailchimp subscription form

#245089
Beverleyh
Participant

and I am kind of sure that i am using right elements

Try using the developer console – F12 in most browsers.
If you inspect the element that you’re trying to target, you should be given the element selectors needed for your CSS over in the “style” pane.

Try not to use !important overrides if you can because it makes maintenance difficult. Instead, increase the specificity of your target selector – e.g.;

.element { /* styles */ }

body .element { /* I'm more specific */ }

Sometimes using !important is OK – here’s a discussion to help you decide https://css-tricks.com/when-using-important-is-the-right-choice/