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
Export html picture size -- missing??
-
- Addicted to Bruji
- Posts: 33
- Joined: Fri Sep 10, 2004 5:50 am
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:
Of course adjust the values to your desired width and height.
Code: Select all
<meta name="image-width" content="300" />
<meta name="image-height" content="400" />
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:
You can also do this with a CSS:
Code: Select all
<img src="[Key:CoverImageURL]" width="500">
Code: Select all
img {
width:500px;
}