Whenever I create a basic drawing (square, circle, etc.) a transform (translate) attribute is added by default without me doing any moving at all. Please check the image below:
http://imgur.com/vW7mthY
This is reflected via the following code to the saved SVG file:
Code: Select all
<g transform="translate(0 -752.36)">
The translate value is always the same. I am using inline SVG using the generated code, and this transform causes issues with displaying the images. Tried removing it following some tutorials I found but it's not working. Any ideas why this transform is applied by default and how to get rid of it?