Copy link to clipboard
Copied
A line of capital A's with upside down V appears on my site, but not on my live view - what's up with that? Many thanks
Open your code in CODE view. This is the offending code that appears on Line 48.
<h2 align="left">Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â </a>
For best results in modern browsers, I highly recommend that you switch to a modern code editor (DW CC 2021) and HTML 5 doctype instead of outdated XHTML Transitional.
On lines 1 - 3, replace this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htm
...Copy link to clipboard
Copied
well a screen grab, and/or a code view will be welcome 🙂
Copy link to clipboard
Copied
having difficulty uploading but my site is susanleith.com
and, please be kind - I'm trying to learn Dreamweaver on my own -- not sure what I was thinking!
Copy link to clipboard
Copied
Open your code in CODE view. This is the offending code that appears on Line 48.
<h2 align="left">Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â </a>
For best results in modern browsers, I highly recommend that you switch to a modern code editor (DW CC 2021) and HTML 5 doctype instead of outdated XHTML Transitional.
On lines 1 - 3, replace this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head>
With this:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Unique Page Title</title>
HTML5 Tutorials:
https://www.w3schools.com/html/
Post back if you need more help.
Copy link to clipboard
Copied
OMG - thank you thank you thank you - I've been having so much trouble trying to figure this out. THANK YOU.
thanks also for the tutorials - I will check them out NOW!
susan
Copy link to clipboard
Copied
You're welcome. 🙂
Also you have several fatal errors in your code which need attention. Browsers get confused by errors.
https://validator.w3.org/nu/?doc=http%3A%2F%2Fsusanleith.com%2F
Copy link to clipboard
Copied
Change to UTF-8 characters and upload your document to server again. Refresh your browser.
<meta charset="UTF-8">
If it persists, post the URL to your problem page so we can see it.