Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #266573

    What do I need to enter in Quick CSS so that 1. the Submit button, text, etc. is using the themes colors (orange, dark grey, etc.), 2. how can the Submit button be exactly to the right of the submit form and 3. how can I change the size of both the e-mail form and the submit button, similar to what’s here at the very bottom: http://startupletters.com/

    Web site: http://www.fantasyblurb.com/testing123/?page_id=16

    Thanks in advance!

    #266950

    Hello!

    Add this:

    #mc_embed_signup .clear {
        display: block;
        visibility: visible;
        height: auto;
        width: auto;
        float: left !important;
    }
    input#mce-EMAIL {
        float: left !important;
        margin-right: 0 !important;
        width: 200px !important;
        padding: 16px 5px !important;
    }
    #mc_embed_signup .clear input[type='submit']{
        padding:9px 22px;
    	cursor:pointer;
    	border:none;
    	-webkit-appearance: none;
    	border-radius: 0px;
        width: 120px;
    }
    #mc-embedded-subscribe-form {
        margin: 0 auto;
        max-width: 351px;
    }
    #mc_embed_signup label{
    	text-align: center;
    }

    Result:

    Cheers!
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.