[Resolved] Customize Jetpack Subscription Form

Home Forums Support [Resolved] Customize Jetpack Subscription Form

Home Forums Support Customize Jetpack Subscription Form

Viewing 6 posts - 16 through 21 (of 21 total)
  • Author
    Posts
  • #683903
    Feri

    ok, this is the correct code?

    #sub-section #subscribe-email input, #sub-section #subscribe-submit input[type=submit] {
        width: 50% !important;
    }
    #sub-section #subscribe-email input {
        float: left;
    }
    #683908
    David
    Staff
    Customer Support

    Aah yes, sorry i forgot to switch the 2nd lot of IDs
    Looks like you cracked it.

    #683912
    Feri

    Yeay!

    all is ok at desktop view (email form and button position side by side) but at the mobile view is it possible to make email form and the button position become top and bottom something like this https://prnt.sc/kxdtit

    #683923
    David
    Staff
    Customer Support

    You can wrap the last code in a media query like so:

    @media (min-width: 769px) {
        #sub-section #subscribe-email input, #sub-section #subscribe-submit input[type=submit] {
            width: 50% !important;
        }
        #sub-section #subscribe-email input {
            float: left;
        }
    }
    #683925
    Feri

    thank you so much, david. done.

    case closed.

    #683926
    David
    Staff
    Customer Support

    Awesome. Glad to be of help.

Viewing 6 posts - 16 through 21 (of 21 total)
  • You must be logged in to reply to this topic.