Quote:
Originally Posted by kovidgoyal
do you have some extra styles defined in the viewer settings? That's the only thing I can think of to cause it. You can use the inspector (right click and chose inspector button) in the viewer to check what CSS is beig applied to those elements.
|
No, just the default ones, BUT ...
Right-click, Preferences, Styles I changed text-indent to 0em (and text-align to left [personal preference]) and it looks much better
Code:
body {
color:rgb(0,0,0);
background-color:rgb(234,234,234);
text-align:left;
line-spacing:1.8;
margin-top:0px;
margin-bottom:4px;
margin-right:50px;
margin-left:50px;
text-indent:0em;
}
h1, h2, h3, h4, h5, h6 {
color:black;
text-align:center;
font-style:italic;
font-weight:bold;
}
Thanks !!