Commenter Thread Comments on Site Experiment by CharlesWT 2025-12-07 00:08:58 When I've hit Enter or pressed <Ctrl> + Enter, the comment is posted. But Enter works now, <Ctrl> + Enter doesn't do anything. 2025-12-06 21:25:48 Here's more. :) stylesheet.css main.min.css Question: How do you insert line breaks into a comment without causing it to post? 2025-12-06 20:05:37 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;
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;