• Resolved markmaslow

    (@markmaslow)


    Dear Brandon,

    I use the Genesis eNews Extended Plugin in the Footer Widget Area of the eleven40 Pro Theme.

    Since I updated from eleven40 –> eleven40 Pro, the “Submit button” slipped into a new line and therefore takes up a lot space.

    For the previous eleven40 Theme, I managed to get the button next to the imput field (78% width input vs. 22% button).

    Since, I’m no CSS pro, I currently lost how to do that for the new theme (eleven 40 pro).

    Here’s my website: https://www.marathonfitness.de

    This is, what is currently in my style.css

    /* Genesis eNews Extended
    --------------------------------------------- */
    
    .enews-widget input {
    	margin-bottom: 16px;
    	margin-bottom: 1.6rem;
    }
    
    .enews-widget input[type="submit"] {
            width: auto;
            display: block;
            margin: auto;
    }

    I would be more than happy if you could help me get the button one line above as in your tutorial for the Minimum 2.0 theme:

    https://www.brandonkraft.com/uploads/enews-minimum-style-go.png

    Thanks so much, also for the great work so far!

    Regards,
    Mark

    https://www.ads-software.com/plugins/genesis-enews-extended/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter markmaslow

    (@markmaslow)

    Okay folks, problem solved. ??

    This is what solved the problem for me:

    .enews-widget input {
         float: left;
         margin-bottom: 1.6rem;
         margin-right: 5px;
         width: 68%
    }
    
    .enews-widget #subbox1 {
        float: left;
        margin-bottom: 1.6rem;
        margin-right: 5px;
        width: 100%
    }
    
    .enews-widget input[type="submit"] {
         display: block;
         float: right;
         margin: auto;
         width: 28%;
    }

    Cheers,
    Mark

    Thread Starter markmaslow

    (@markmaslow)

    I’ll close this topic.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Submit Button and Email Address on the Same Line (eleven40 pro theme)’ is closed to new replies.