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 ?.
Asked
Active
Viewed 130 times
0
-
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
– Roboroads Dec 17 '21 at 08:56s (in
s.. etc.) to get the exact layout they want.
-
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 Answers
0

DialFrost
- 1,610
- 1
- 8
- 28
-
Hi, thank you for your comment and yes i have tried it but it has no effect. – user17157150 Dec 17 '21 at 09:12
-
did you add body{ margin:0; } although otherwise you can try this https://stackoverflow.com/questions/35483881/remove-left-padding-css – DialFrost Dec 17 '21 at 09:15
-
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