Forums

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

Home Forums CSS mailchimp subscription form

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #245034
    millerinna
    Participant

    the problem with mailchimp subscription form

    trying to change the way form looks and styles doesn’t apply.

    my form in a row of three widgets (text) in footer. i were able to make letter uppercase but when i trying to change font-size in the same style it’s doesn’t change.
    also trying to change font color on subscribe button and doesn’t apply too.

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

    http://www.machigling.org
    wordpress theme – responsive

    thanks in advance for all your help!

    #245081
    I.m.learning
    Participant

    Those on mobile cannot see your code; I’m one. Without seeing your code, have you tried using “!important” in your css?

    #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/

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.