Formating of Text under Pictures

Use GitHub to post feature requests for phpwcms.
Locked
Mixix34
Posts: 18
Joined: Sat 11. Nov 2006, 11:05
Location: Belzig Germany
Contact:

Formating of Text under Pictures

Post by Mixix34 »

Hi,
hope I'm right here.
I want to make textlines under my pictures by using the intput form.
First problem is: I have two very different text sizes in Mozilla and MSI.
Second: The lines are doing no Return and don't fit under the Pictures if they are too long.

Where can I format the Text under the Pictures?

Any solution for that?
pepe
Posts: 3954
Joined: Mon 19. Jan 2004, 13:46

Post by pepe »

Add the following codelines into your frontend.css file... and play with it!

.image_caption {
font-family: Arial, Helvetica, Verdana, sans-serif;
font-size: 11px;
font-weight:normal;
color:#999999;
text-align:left;
padding-top:3px;
}
.imglistcaption {
font-family: Arial, Helvetica, Verdana, sans-serif;
font-size:11px;
font-weight:normal;
color:#999999;
text-align:left;
padding-top:3px;
}


Do you have a URL to show?

What do you mean with "inputform"???
My captions do have automatic breaks... no line is longer than the width of the image???

But you can use [BR] as a manual Break! Nearly all over the script!!!
Mixix34
Posts: 18
Joined: Sat 11. Nov 2006, 11:05
Location: Belzig Germany
Contact:

Post by Mixix34 »

Hey thanks,
that works. Return works with [br].
With Inputform I ment the feeld were you have to put the text witch should be visible under the picture.

Anyway. Every thing is fine.

Thanks for quick help. :D
Locked