Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Validation problems

  • 28-02-2011 3:19pm
    #1
    Registered Users, Registered Users 2 Posts: 10,245 ✭✭✭✭


    I'm currently in the final stages of a site and I'm wondering why Dreamweaver is throwing up validation issues like "The tag:"meta" is not allowed within: "meta" It is only allowed within: head.[XHTML 1.0 Strict]". I can't see the problem.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="keywords" content="one, two, three" />
    <meta name="description" content="four, five, six," />
    <title>blah blah</title>
    <link rel="stylesheet" type="text/css" media="screen" href="css/global.css" />
    <script type="text/javascript" src="jquery-1.5.min.js"></script>
    <script type="text/javascript"> 
    $(document).ready(function(){
    $(".flip").click(function(){
        $(".panel").slideToggle("slow");
      });
    });
    </script>
    <link rel="stylesheet" type="text/css" media="screen" href="css/global.css" />
    </head>
    


Comments

  • Registered Users, Registered Users 2 Posts: 10,245 ✭✭✭✭Fanny Cradock


    Answered my own question. I had neglected to close the first meta tag which threw everything else out.


Advertisement