Quote:
Originally Posted by Ripplinger
For Andy, the line that starts with "a" has to be its own style entry, not included in another style. So it should be:
.MsoToc {
display: block;
font-family: "Arial", "sans-serif";
font-size: 1em;
margin-bottom: 5pt;
margin-left: 0;
margin-right: 0;
margin-top: 0;
}
a {
text-decoration: none
}
|
Thanks Ripplinger, but I've added the lines as I think you've specified and it still hasn't worked. What I now have is as follows:
.MsoToc {
display: block;
font-family: "Arial", "sans-serif";
font-size: 1em;
margin-bottom: 5pt;
margin-left: 0;
margin-right: 0;
margin-top: 0
}
a {
text-decoration: none
}
.MsoToc1 {
display: block;
font-family: "Arial", "sans-serif";
font-size: 1em;
margin-bottom: 5pt;
margin-left: 11pt;
margin-right: 0;
margin-top: 0
}
a {
text-decoration: none
}
.MsoToc2 {
display: block;
font-family: "Arial", "sans-serif";
font-size: 1em;
margin-bottom: 5pt;
margin-left: 40pt;
margin-right: 0;
margin-top: 0
}
a {
text-decoration: none
}
Is there an 'apply' button to make the changes in the code apply themselves?