Tagged: 

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #301161

    Hi,

    I am trying to edit the CSS of the subscribe box in the footer which is part of the MailChimp Plugin and says to use the class .mc4wp-form and any child elements after it. I can’t seem to get it to work with any of the changes i want to make. Do i need to put something before it like #footer?

    Thanks,

    A

    #301166

    Hey A!

    Yes, you should use the code as following if you would like to only target the selector in footer

    #footer .mc4wp-form { opacity: 1; }

    Best regards,
    Yigit

    #301230

    Hi Yigit,

    Thanks for the reply. I still can’t get anything to change with that code even with the !important tag…

    Don’t know why.

    Thanks,

    A

    #301258

    Hey!

    What exactly would you like to change? We can provide you custom CSS code if you are not going to make heavy customisation

    Regards,
    Yigit

    #301285

    Hi,

    I would like the form in the footer to have rounded edges and for the button to be this colour (#fec10d) with rounded edges too. Also, the font in the box and on the button is not the same p tag as elsewhere so I would want that to be the same too. Lastly, i would like to reduce the amount of space that is left below the button which is all empty.

    Thanks for your help,

    A

    #301289

    Hi!

    Please add following code to Quick CSS

    #footer #mc4wp-form-1 input[type="submit"] {
    background-color: #fec10d;
    border-radius: 5px;
    color: white;
    }
    #footer input#mc4wp_email {
    border-radius: 5px;
    color: black;
    }
    #footer .widget {
    margin: 0;
    }

    Best regards,
    Yigit

    #303121

    Hi Yigit,

    Thanks for the code. I have added it but it still only half works. The email box has responded to the radius code and the margin is reduced, but everything else remains the same. This is odd!

    Thanks for the support,

    A

    #303608

    Hey!

    You may need to add !important to the end of your css values so that they force override the css on the elements.

    Regards,
    Devin

    #303712

    Hi Devin,

    Thanks for the suggestion. Unfortunately, still no change.

    A

    #303715

    Hey A!

    Please add following code to Quick CSS

    #footer .mc4wp-form input[type=submit] {
    background-color: #fec10d;
    color: white!important;
    border-radius: 5px;
    }

    Best regards,
    Yigit

    #303730

    Hi Yigit,

    Sorry, it still isn’t working.

    Thanks,

    A

    #303747

    Hey!

    Do you mind creating a temporary admin login and posting it here privately?

    Best regards,
    Yigit

    #303752
    This reply has been marked as private.
    #303756

    Hi A!

    There are some punctional errors in your CSS code. I have corrected them but it messed up the look of your page so i reverted and placed the code to top of Quick CSS field. It works fine. Correct code should be like this – http://pastebin.com/W99TWtkz
    You should comment on your CSS code as following
    /* This is comment */

    Regards,
    Yigit

    #303791

    Hi Yigit,

    Thanks for pointing that out.

    I have tried to tidy things up a bit, but now the hover function over the custom class ‘section-box’ doesn’t work. Could you help me get that function back please. The dark gray box at the end of each section with the small triangle cut out should highlight on hover.

    Thanks,

    A

    #303802

    I have got it to part highlight but for some reason the whole text box isn’t highlighting on hover…

    Thanks,

    A

    #303809

    Hey A

    Please add following code to Quick CSS as well

    .avia_textblock.section-box:hover div#a {
    background-color: #fec10d;
    }

    Regards,
    Yigit

    #303884

    Thanks Yigit! Your help has been fantastic.

    Last one.. How about getting the subscribe button to highlight #fec10d on hover?

    Thanks,

    A

    #303920

    Hey A!

    You are welcome :)
    Please add following code to Quick CSS as well

    .mc4wp-form input[type=submit]:hover {
    background-color: #fec10d;
    }

    Regards,
    Yigit

    #303929

    Thanks!

    All sorted, I have a different question, but will start a new thread.

    A

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘CSS ID’ is closed to new replies.