Dreamweaver Error Message

by 1 replies
2
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:CSS:
#programming #dreamweaver #error #message
  • 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.
    • [ 1 ] Thanks

Next Topics on Trending Feed

  • 2

    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".