in reply to Re^3: Is ChatGPT like having a thousand monkeys? (Blank lines in emails)
in thread Is ChatGPT like having a thousand monkeys?
I haven't posted a good example because I'm protecting my client's information, but here's a taste of what I was seeing. This is one of the parts of the page that was causing breakage:
and here's the repaired section that worked fine:<!DOCTYPE html> <html> <head> <title>Daily Sage Issues</title> <style> body { font-family: sans-serif; } table { border: 1px solid black; border-spacing: 0px; border-collap +se: separate } td { border: 1px solid black; padding: 5px; } td.right { text-align: right; } td.left { text-align: left; } td.center { text-align: center; } td.bold { text-align: right; font-weight: bold; } div.head { text-align: center; font-size: 24px; } </style> </head> <body> ...
It really was as simple as removing all of the blank lines in the HTML page.<!DOCTYPE html> <html> <head> <title>Daily Sage Issues</title> <style> body { font-family: sans-serif; } table { border: 1px solid black; border-collapse: collapse } td { border: 1px solid black; padding: 5px; } td.right { text-align: right; } td.left { text-align: left; } td.center { text-align: center; } td.bold { text-align: right; font-weight: bold; } div.head { text-align: center; font-size: 24px; } </style> </head> <body> ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Is ChatGPT like having a thousand monkeys? (Blank lines in emails)
by LanX (Saint) on Mar 25, 2025 at 17:32 UTC | |
by talexb (Chancellor) on Mar 25, 2025 at 22:08 UTC | |
by LanX (Saint) on Mar 26, 2025 at 01:12 UTC |