Page 1 of 1

spare between two paragraph

Posted: 26 Feb 2011, 02:56
by dgysen
Hello,

Is there a way to control the space between two paragraph in the textpage?

Actually It's seems that I have a space equal to twice the police height

I've try to change the leading value in the stylesheet but seems not effective

Is there any parameters that can change or influence this aspect

I run 2.6.4

tks

Re: spare between two paragraph

Posted: 27 Feb 2011, 11:12
by mjau-mjau
The paragraph is set based on your font-size, and this is not controlled by Imagevue in any way. I am not quite sure what you mean by "twice the police height". A few comments:

# You control the paragraph height to a certain degree with both leading and font-size in CSS. However, this will naturally change the line-height within the text-block and the font-size itself also so may not be a good option.

# Try using double line-break <br/><br/> (shift+return) instead of paragraph (plain return) to separate your text-blocks. Double line-break will give smaller space than paragraph.

# If it is really important, you could fake a vertical space by creating a CSS class:
Code
.myspace { font-size: 5px; }
Then put this in your html code:
Code
Your first text here<br/>
<span class="myspace"><br/></span>
New text with space above