Line Spacing between wysiwyg and wiki display
Hello,
I have been wrestling for a couple of days regarding line spacing with the tikinewt.css....
The issue is when a user edits a wiki page using the wysiwyg, when they hit enter between the lines, it has one line space (directly underneath the text at the top).
When they save and view it, it has what appears to be a couple of line spaces.....
Some of the things I have tried is to edit the fckconfig.js file and make enter be br....
What this does then is put a <br /> tag in the wiki text you type instead of a p...
but when you display the text, once again a couple of spaces.....
I think this can be solved through css, but I have tried to do something like the following:
p {
line-height: 1.5em;
}
br {
line-height: 1.5em;
}
The p reference above seems to have an effect, meaning in IE7, it likes it to be 1.5 and not 1.0.....
Also, this has to work mainly in IE7 (as this is for an internal staff intranet, which is mainly IE7) and firefox.....
can anyone give me any guidance on this?