Export html picture size -- missing??

Any trouble you encounter with the Pedias, here's the place to ask for help.
Post Reply
celtoslavica
Addicted to Bruji
Addicted to Bruji
Posts: 33
Joined: Fri Sep 10, 2004 5:50 am

Export html picture size -- missing??

Post by celtoslavica »

As much as I like the new export interface, I miss the old function where you could determine the html picture size for export. Is this gone now?? I only get tiny pictures at present.

Markus
User avatar
Conor
Top Dog
Posts: 5344
Joined: Sat Jul 03, 2004 12:58 pm
Contact:

Post by Conor »

Because this option is only used by few user we now use the picture size settings inside the template. Edit your template and add the following in the header:

Code: Select all

<meta name="image-width" content="300" />
<meta name="image-height" content="400" />
Of course adjust the values to your desired width and height.
erlandsen
Junior Member
Junior Member
Posts: 2
Joined: Fri Aug 13, 2004 2:24 am
Location: Herning, Denmark

Post by erlandsen »

When having a cover smaller than the size defined in the code, the indent to the text follows that size.

Is it possible to write into the code, that if smaller than specified, enlarge to set size?
User avatar
Conor
Top Dog
Posts: 5344
Joined: Sat Jul 03, 2004 12:58 pm
Contact:

Post by Conor »

The programs will resize images but it won't enlarge past the size of the original image to avoid pixilation; However write a size into the HTML img tag in the template and the browser will do the resizing:

Code: Select all

<img src="[Key:CoverImageURL]" width="500">
You can also do this with a CSS:

Code: Select all

img {
width:500px;
}
Post Reply