Quote:
Originally Posted by Turtle91
If you want the diagrams on their own page I would recommend an SVG wrapper. If you are using Sigil then there is a plugin to insert an image. Do a search on SVG...there are a lot of threads talking about this issue.
The SVG code for maximizing the display is:
|
I haven't tried this yet because most of my images are inserted in the text.
Quote:
Originally Posted by Turtle91
If you want the image to be on the same page as text then you can just wrap it with a <div>:
|
Ive gone with your suggestion here. So far so good. Thank you.
Code:
div.image {
width:100%; margin:2em auto; text-align:center;
}
img {
max-width:100%; max-height:100%
}
However, I want some of my images more than 100% So I tried changing the css dimensions to 200% but nothing happened.

When I originally drew the images in Inkscape, I didnt worry too much about the width because, as you mentioned, svg is supposed to stretch. So, here I am, wanting to stretch them.
Please don't tell me I have to draw my pictures again. Is there something I can add to the stylesheet to stretch the image across the screen?