Commenter Thread

Comments on Site Experiment by CharlesWT

When I've hit Enter or pressed <Ctrl> + Enter, the comment is posted.

But Enter works now, <Ctrl> + Enter doesn't do anything.

Here's more. :)

stylesheet.css

main.min.css

Question: How do you insert line breaks into a comment without causing it to post?

If the code in cwp.css is working correctly, these errors may not be significant. Functionally, they may not matter.

/* Original (Incorrect) */
padding: 6px; 6px; 8px; 6px;

/* Corrected */
padding: 6px 6px 8px 6px;

------------
/* Original (Incorrect) */
//  max-width: 40px;
//  max-height: 42px;

/* Corrected */
/*  max-width: 40px; */
/*  max-height: 42px; */

------------
/* Original (Incorrect) */
vertical-align: text;

/* Corrected */
vertical-align: text-bottom;

------------
/* Original (Incorrect) */
width: 100%
font-size: 18px;

/* Corrected */
width: 100%;
font-size: 18px;