Recent Topics

1 Jun 28, 2008 14:13    

My b2evolution Version: 1.10.x

Hello !
I'd like to know if there is a way to set a maximum size for images.

(I'm setting up this family blog and not all my users will think of resizing their images... )

Thank you much !

2 Jun 28, 2008 15:51

if you will always use the same size for images than, define the class in the css and assign a class while inserting the image.

you will define that class only once in css for example;

img.familypicture {
width: 400px;
height: 350px;
margin-bottom: 1px;
}

than use this class while inserting the image each time i.e;

<img src="http://www.mydomain.com/mypicture.jpg" class="familypicture" align="left" alt="image"/>


Form is loading...