• There is no space between the Addresses and the ENABLE ADDITIONAL CONTENT. How do I get it between them?

    https://ibb.co/qgcgNmq

    There is space showing in your editor, but in the mails send, there is none.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi, I can’t recreate this. What email inbox are you viewing in?

    Thread Starter SLV

    (@dwnl)

    Microsoft Office Outlook from Microsoft 365 office.
    And it is only in that program the space is gone… That is weird….

    • This reply was modified 1 year, 8 months ago by SLV.

    Hmm, well that doesn’t surprise me that it’s only outlook. Outlook is by far the hardest inbox to work with in terms of getting emails to look like they are intended to. I was reading a bit on different forms for how to make outlook acknowledge spacing, and there is no clear way to make it work.

    I saw some people suggesting using a border instead of padding or margin. You could try adding this custom css:

    #addresses {
    margin-bottom:0 !important;
    }
    .address-container {
    border-bottom:40px solid #fff !important;
    }

    Ben

    Thread Starter SLV

    (@dwnl)

    I am back at it again, I have put your code into the custom CSS of your plugin, but it does nothing…

    And I can confirm that in a web browser mailbox like Roundcube, there is some space between the 2. So it really is an Outlook issue.

    Your box for the additional text does not support <br> or <p>
    So yes I can put a border, but then there is still not space between.

    Do you have a solution yet?

    Plugin Support Gilbert Hernandez

    (@ghernkadence)

    Hello @dwnl

    I’m not sure I understand what you mean when you say that the box for additional text doesn’t support <br> or <p>. When I add them to the box, they work just fine. If you need space, try adding a <hr>. Then, you can add css to add bottom margin to the hr. Would that work?

    Thread Starter SLV

    (@dwnl)

    Yes, I can put in what I want, but I do not get the space between the address and the bottom text.
    You say: try adding a <hr>. Then, you can add css to add bottom margin to the hr. Would that work?
    I need margin/padding below and above that <hr> line. Can you help me with that?

    Plugin Support Gilbert Hernandez

    (@ghernkadence)

    Hello,

    Indeed, it is possible to include a <hr> tag and apply CSS to add top and bottom margins. As an illustration, I added the <hr> tag to my additional content and incorporated the following custom CSS. I have attached an image of the outcome for reference.

    hr {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    Thread Starter SLV

    (@dwnl)

    Yes this works!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Space between the Addresses and the ENABLE ADDITIONAL CONTENT.’ is closed to new replies.