Dreamweaver Error Message

1 replies
Hello,

I get the error message: "Line 1, Column 483, expected RBRACE at line 1, col 483". I saved and uploaded everything, and deleted my cache. Still, the website shows previous version with the banner image and the word "test".

How do I figure out where column 483 is? In DW there are only rows that I can see. Domain URL: www.roccoandjade.com

HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Rocco&Jade</title>
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="banner">
<img src="images/intensify-banner.jpg" width="817" height="252" alt="Rocco & Jade Teach You How to Intensify Your Sex Life">
</div>
<h1>Limited Time Offer!</h1>
<h2>Get all modules half price!</h2>
<h2>Let us show you how to get them for free!</h2>
<h3>This will be the main copy text</h3>
<p><rocco>Rocco:</rocco>
<p><jade>Jade:</rocco>
<h4>test</h4>
<h5>test</h5>
<h6>test</h6>
</body>
</html>
CSS:
@charset "UTF-8";
/* CSS Document */

#banner {
text-align: center;
}
body {
font-family: Verdana, Gotham, Helvetica Neue, Helvetica, Arial," sans-serif"
}

h1 {
font-family: Cambria;
letter-spacing: 1px;
}

h2 {
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
letter-spacing: 5px;
font-size: 30px;
color:#000000;
}

rocco {
font-family: Verdana, Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, sans-serif";
letter-spacing: 0px;
font-size: 30px;
color: #7D6608;
font-weight: 900;
}

jade {
font-family: Verdana, Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, sans-serif";
letter-spacing: 0px;
font-size: 30px;
color: #0B5345;
font-weight: 900;
}

h3 {
font-family: baskerville;
letter-spacing: 0px;
font-size: 24px;
}

h4 {
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
letter-spacing: 5px;
}

h5 {
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
letter-spacing: 5px;
}

h6 {
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
letter-spacing: 5px;
}

#dreamweaver #error #message
  • Profile picture of the author aesoft
    Hello roccoandjade,

    The column refers to the character position within the stated line.

    Looks like you have some open quotes. Fix the quotes then see if there are problems.

    For example, in your CSS, the font-family ends with a closing double quote. If there is something needing encapsulating, like a font name, then you would either need to remove it or put a beginning quote where it belongs

    There are several places that have this, so it's breaking the styling and causing other conflicts..

    Code:
    rocco {
    font-family: Verdana, Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, sans-serif";
    letter-spacing: 0px;
    font-size: 30px;
    color: #7D6608;
    font-weight: 900;
    Invalid - Caused by open double quote placed at the end::
    Code:
    font-family: Verdana, Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, sans-serif";
    With proper double quotes (Note: previous double quote had been removed):
    Code:
    font-family: Verdana, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", sans-serif;
    Go through your css and fix all those first.
    {{ DiscussionBoard.errors[10917177].message }}

Trending Topics