Check out this sample fiddle. (Make sure to view it in Firefox) Any suggestions on how I can adjust the positioning of my textpath within my SVG so that it isn't hidden?
I attempted to include x
and y
attributes in both the svg
and text
tags, but the text remains stationary.
<svg width="597" height="98" style="overflow:visible; ">
<defs>
<path d=" M 0,0 L 596,0 M 0,96 L 596,96 " id="_x0000_i1042tp" />
</defs>
<text x="10" y="40" style="font-size:48px; font-family:"Times New Roman"; fill:#369; " method="stretch">
<textPath xlink:href="#_x0000_i1042tp" xmlns:xlink="http://www.w3.org/1999/xlink">WortArt Test3</textPath>
</text>
In addition, the above demonstration doesn't display properly in Chrome (or other webkit browsers), as they tend to hide overflowing SVG elements. Any tips on resolving this issue?
Thanks for your help!