Hi,
I'm new to Inkscape and have created a file with a background image, which contains a table layout copied from Excel.
In each of the cells, I have put family names with an Anchor/Link to corresponding files about each person.
All the links work perfectly when viewed in the browser but the image won't scale down when the browser window is reduced in size.
Can anyone suggest what I should do please, to overcome this.
Thanks
The relationship between the image size and the browser size is based on the svg's width and height as compared to it's view box.
Basically instead of width="300px" you need width="100%" and height="100%"
If you're embedding the svg into html, you can use the html css to control it's size instead.
Hi,
I'm new to Inkscape and have created a file with a background image, which contains a table layout copied from Excel.
In each of the cells, I have put family names with an Anchor/Link to corresponding files about each person.
All the links work perfectly when viewed in the browser but the image won't scale down when the browser window is reduced in size.
Can anyone suggest what I should do please, to overcome this.
Thanks
The relationship between the image size and the browser size is based on the svg's width and height as compared to it's view box.
Basically instead of width="300px" you need width="100%" and height="100%"
If you're embedding the svg into html, you can use the html css to control it's size instead.