0

I am styling a newsletter for different mail clients but i have one problem and that is that the copyright text on the bottom seems to be adding padding or margin on the left side of it and i can not figure out why. I have tried many things like putting the padding left and margin left on 0 but that does not seem to work. Does anyone have a fix for this problem ?.

  • There's not a lot we can help you with without some example code. Could you show us what you tried? Also: email templates are... wel.. not too giving with HTML. A lot of businesses use s in
    s (in
    s.. etc.) to get the exact layout they want.
    – Roboroads Dec 17 '21 at 08:56
  • Use an email framework [like mjlm](https://mjml.io) for creating html mails. Other then that, all we can say for now is: You have an error in your code, fix it. Can't say what specifically wihtout any code posted. – cloned Dec 17 '21 at 08:56

2 Answers2

0

have you tried this yet?

* {
  margin: 0;
  padding: 0;
}

link: Removing body margin in CSS

DialFrost
  • 1,610
  • 1
  • 8
  • 28
0

Are you using <ul> tag? It has a CSS Default Values padding-inline-start: 40px;.

You can remove it by setting it to 0px,i.e. padding-inline-start: 0;

seantsang
  • 1,123
  • 2
  • 7
  • 20