Search code examples
htmlcssemailhtml-email

Content not aligning in center


this is my first time posting here. I'm having trouble with this email I am trying to develop. Everything looking fine until you expand full screen. When expanding full screen, some of the content ends up being next to each other. Please help. Thank you.

.footer {
  width: 600px;
  background-color: #262626;
  text-align: center;
  font-family: verdana;
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  img {
    max-width: 100% !important;
  }
  .footer {
    max-width: 100% !important;
  }
}
<center>
  <table>
    <tr>
      <a href="https://www.dollarshaveclub.com/our-products/clean/conditioner"><img src="https://i.imgur.com/PDjptBG.jpg"></a>
    </tr>
    <tr>
      <img src="https://i.imgur.com/hQ742x0.jpg">
    </tr>
    <tr>
      <img src="https://i.imgur.com/Tp7E0YJ.jpg">
    </tr>
    <tr>
      <a href="https://www.dollarshaveclub.com/our-products/clean/conditioner"><img src="https://i.imgur.com/jGkDOCo.jpg"></a>
    </tr>
    <tr>
      <a href="https://www.dollarshaveclub.com/our-products/clean/shampoo-and-conditioner-bundle"><img src="https://i.imgur.com/ZO8mC30.jpg"></a>
    </tr>
    <div class="footer">
      <img style="padding-top:20px;" src="https://i.imgur.com/CShaFcV.png">
      <p style="font-size:13px; color:#9c9c9c;">2018 Dollar Shave Club. All Rights Reserved.</p>
      <p style="font-size:11px; color:#757575;">13335 Maxella Ave. Marina Del Rey, CA 90292</p>
      <a href="https://help.dollarshaveclub.com/hc/en-us/articles/115004873807-Privacy-Policy" style="font-size:11px; color: #545454;">Privacy</a>
      <a href="https://help.dollarshaveclub.com/hc/en-us/sections/115001914007-Membership-Settings" style="font-size:11px; color: #545454;">Unsubscribe</a>
      <br>
      <br>
    </div>
    </tr>
  </table>
</center>


Solution

  • The browser isn't rendering your table (because you don't have <td> elements).

    Update To make it fully responsive, you can use a table width of 100%. You will also need margin:0 auto; on the img tag:

    .footer {
      width: 600px;
      background-color: #262626;
      text-align: center;
      font-family: verdana;
      text-decoration: none;
    }
    
    img {
      margin: 0 auto;
    }
    
    @media only screen and (max-width: 600px) {
      img {
        max-width: 100% !important;
      }
      .footer {
        max-width: 100% !important;
      }
    }
    <center>
      <table width="100%" cellpadding="0" style="border-collapse: collapse;">
        <tr>
          <td>
            <a href="https://www.dollarshaveclub.com/our-products/clean/conditioner" target="_blank"><img src="https://i.imgur.com/PDjptBG.jpg" style="display:block;" /></a>
          </td>
        </tr>
        <tr>
          <td>
            <img src="https://i.imgur.com/hQ742x0.jpg" style="display:block;" />
          </td>
        </tr>
        <tr>
          <td>
            <img src="https://i.imgur.com/Tp7E0YJ.jpg" style="display:block;" />
          </td>
        </tr>
        <tr>
          <td>
            <a href="https://www.dollarshaveclub.com/our-products/clean/conditioner" target="_blank"><img src="https://i.imgur.com/jGkDOCo.jpg" style="display:block;" /></a>
          </td>
        </tr>
        <tr>
          <td>
            <a href="https://www.dollarshaveclub.com/our-products/clean/shampoo-and-conditioner-bundle" target="_blank"><img src="https://i.imgur.com/ZO8mC30.jpg" style="display:block;" /></a></td>
        </tr>
        <tr>
          <td class="footer">
            <img style="padding-top:20px; display:block;" src="https://i.imgur.com/CShaFcV.png" />
            <p style="font-size:13px; color:#9c9c9c;">2018 Dollar Shave Club. All Rights Reserved.</p>
            <p style="font-size:11px; color:#757575;">13335 Maxella Ave. Marina Del Rey, CA 90292</p>
            <a href="https://help.dollarshaveclub.com/hc/en-us/articles/115004873807-Privacy-Policy" target="_blank" style="font-size:11px; color: #545454;">Privacy</a>
            <a href="https://help.dollarshaveclub.com/hc/en-us/sections/115001914007-Membership-Settings" target="_blank" style="font-size:11px; color: #545454;">Unsubscribe</a>
            <br>
            <br>
          </td>
        </tr>
      </table>
    </center>