Search…

X3 Photo Gallery Support Forums

Search…
 
dgysen
Topic Author
Posts: 17
Joined: 06 Dec 2010, 02:33

spare between two paragraph

26 Feb 2011, 02:56

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: spare between two paragraph

27 Feb 2011, 11:12

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