Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
hi all I'm new here. I made some svg animation and need add it in umbraco editor like html code. I tried but its doesnt work. Are thare some way to do it?
Try changing the property editor to a textarea rather than a RTE/Markdown Editor, it may be stripping out certain tags or characters.
To add to Ryan's note - also you probably want to output the markup using:
@Html.Raw(Model.svgImgWrap)
So that it's not encoded in the Razor View.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
svg cod to umbraco
hi all I'm new here. I made some svg animation and need add it in umbraco editor like html code. I tried but its doesnt work. Are thare some way to do it?
Try changing the property editor to a textarea rather than a RTE/Markdown Editor, it may be stripping out certain tags or characters.
To add to Ryan's note - also you probably want to output the markup using:
@Html.Raw(Model.svgImgWrap)
So that it's not encoded in the Razor View.
is working on a reply...