Home Forums Newsletter Plugin Support Subscribe button alignment

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #25202
    koolaide187
    Participant

    I’ve googled for about 3 hours now and came to your forum and did a search and seen several people asking for the same thing. They all want what I would like to do and nobody has got a response. How do you align the subscribe button with the email text box on the newsletter plugin widget? I have a very thin top bar and i’d like to keep it thin by aligning the subscribe button to the right of the email text box field. Can this be done in CSS shortcode? If so please let me know how it can be done. I am definitely not a PHP professional. Thanks!

    #25566
    qzelle
    Participant

    I’m having the same problem. By looking at the code at http://domain.com/newsletter, it appears that the SUBSCRIBE button is in a new table row.

    <tbody><tr>
    <th>Email</th>
    <td align=”left”><input class=”newsletter-email” type=”email” name=”ne” size=”30″ required=””></td>
    </tr>

    <tr>
    <td colspan=”2″ class=”newsletter-td-submit”>
    <input class=”newsletter-submit” type=”submit” value=”Subscribe”>
    </td>
    </tr>

    </tbody>

    Theoretically, something like this should work, but I’m not sure where I would change the HTML code:

    <tbody>
    <tr>
    <th>Email</th>
    <td align=”left”><input class=”newsletter-email” type=”email” name=”ne” size=”30″ required=””></td>
    <td class=”newsletter-td-submit”>
    <input class=”newsletter-submit” type=”submit” value=”Subscribe”>
    </td>
    </tr>

    </tbody>

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