Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1219490

    Hello,
    I have given my mailchimp form a specific class (.yellow-nl). I’m trying to specify the colors using the quick css:

    .yellow-nl > #top .main_color input[type='text']{
        border-color: #000000!important;
        background-color: #fff!important;
        color: #000000!important;
    }
    
    .yellow-nl > .main_color input[type='submit'] {
        background-color: #000000!important;
        color: #ffffff!important;
        border-color: #000000!important;
    }
    

    Page: https://heaven11audio.com/billie-stereo-intergrated-amplifier/

    But I can’t seem to affect it. What am I missing?

    Also I would like to remove the space between the email input and submit buttton.

    Thanks,

    Itai

    #1219508

    Hey Itai,

    Looks like the class is in the wrong space. Try the following:

    
    .yellow-nl .form_element_fourth {
        margin-left:0px!important;
    }
    
    #top .main_color .yellow-nl input[type='text']{
        border-color: #000000!important;
        background-color: #fff!important;
        color: #000000!important;
    }
    
    .main_color .yellow-nl input[type='submit'] {
        background-color: #000000!important;
        color: #ffffff!important;
        border-color: #000000!important;
    }

    Best regards,
    Jordan Shannon

    #1219516

    Thanks so much Jordan! works like a charm!

    #1219531

    Hi,

    Great, I’m happy to help! If you need anything else, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Control specific form in a color section’ is closed to new replies.