Whenever I insert an image in my html code, it appears to be tiled. How do I untile it?
You’re using the CSS background property and without the full code for it, a browser’s default action is to tile it.
background: url(path to image) no-repeat center scroll;
There are other options to position or fix the image.
Ron