Kenoli Oleari wrote:

>One problem.  It isn't displaying right in Opera.
>http://www.communityassemblies.org/nan_pages/change_template_test.html
>I'd also appreciate feedback on how this displays on Windows.
>--Kenoli
>
I have no idea about the Opera problem. And did not check on a PC. 
However, there are some things you may want to correct. It is a good 
idea to validate the css and mark-up before writing the list. This will 
help make it easier to de-bug. The validator was unable to find your css 
file. And a different character encoding has been added. <style> was 
changed to <style type="text/css">. And the css and js have been 
enclosed in c data sections to prevent the validator from choking. Tidy 
Online<http://infohound.net/tidy/> is often helpful in correcting stuff 
like this. Your parent files should validate (or come close to it) with 
these modifications.
<!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>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Why Community?</title>
<!-- InstanceBeginEditable name="doctitle" -->
<!-- InstanceBegin template="/Templates/equal_columns test.dwt" 
codeOutsideHTMLIsLocked="false" -->
<!-- InstanceEndEditable -->
<style type="text/css">
/*<![CDATA[*/
your css
/*]]>*/
</style>

<script type="text/javascript">
//<![CDATA[
<!--
It is best to call js from an external file. In the meantime insert it here.
//-->
//]]>
</script>
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>

Delete these empty tags from your mark-up.
<p></p>
<p class="text_grey_italic"> </p>
Regards,
~dL
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to