Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #407267

    Three quick questions …

    1. Is there some quick CSS code that I can add so my Masonry Blog landing page to remove the date and only display the post title? (http://800.9e8.myftpupload.com/blog/)

    2. And how do I control the Title text color in the footer area? Is there some CSS code that I can add that will only affect this area? (http://800.9e8.myftpupload.com)

    3. I am using the MailChimp for WordPress Pro plugin and the buttons display as squared off corners instead of the typical round Enfold corners. How can I change this? (http://800.9e8.myftpupload.com in the blue band at top and in footer on this page)

    Thanks!

    #407294

    Hi John!

    1. Add this to your custom CSS.

    .av-masonry-date { display: none !important; }
    

    2. Try this.

    #footer .widgettitle { color: red !important; }
    

    3. Add this.

    .mc4wp-form * {
    border-radius: 4px !important;
    }

    If you only want it on the button then do this instead.

    .mc4wp-form input[type="submit"] { border-radius: 4px !important; }
    

    Cheers!
    Elliott

    • This reply was modified 9 years, 8 months ago by Elliott.
    #407299

    Amazing response time Elliott! Thank you!!

    #407407

    Hi!

    Glad we could help :)

    Regards,
    Rikard

    #408549

    This worked great for my button issue:

    .mc4wp-form * {
    border-radius: 4px !important;
    }

    Is there a snippet I can add to control the background color of the button?

    #408707

    Hi!

    Try adding this to your Quick CSS:

    .mc4wp-form input[type="submit"] { 
    background-color:red !important;
    }

    Please replace red with the colour of your choice.

    Best regards,
    Rikard

    #408984

    Great, thanks!

    It also looks like my button font size is not the same as all other buttons. Is there code to correct this?

    #409674

    Hi!

    Please try adding this under the background-color line:

    font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    

    Best regards,
    Rikard

    • This reply was modified 9 years, 8 months ago by Rikard.
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.