You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For those receiving errors from oXygen when inserting SVG into your HTML-files, I suspect that the problem was from needing the svg-namespace to be declared, the attribute inside the SVG-element: <svg xmlns="http://www.w3.org/2000/svg">
A namespace looks like a URL link, but it actually tells your web browser what kind of code to expect. Similarly, there is an HTML-namespace declaration in your HTML-files: <html xmlns="http://www.w3.org/1999/xhtml">
Those of you who were having errors, I suspect, were either missing the namespace declaration, had it in the wrong place, or had multiple declarations of the same namespace.
I you are still getting errors in oXygen about your SVG in your HTML-files, please post your code in the Troubleshooting folder. @KhuongNgx
The text was updated successfully, but these errors were encountered:
For those receiving errors from oXygen when inserting SVG into your HTML-files, I suspect that the problem was from needing the svg-namespace to be declared, the attribute inside the SVG-element:
<svg xmlns="http://www.w3.org/2000/svg">
A namespace looks like a URL link, but it actually tells your web browser what kind of code to expect. Similarly, there is an HTML-namespace declaration in your HTML-files:
<html xmlns="http://www.w3.org/1999/xhtml">
Those of you who were having errors, I suspect, were either missing the namespace declaration, had it in the wrong place, or had multiple declarations of the same namespace.
I you are still getting errors in oXygen about your SVG in your HTML-files, please post your code in the Troubleshooting folder.
@KhuongNgx
The text was updated successfully, but these errors were encountered: