Fix HTML structure and update submission guidelines#706
Conversation
Thanks for creating a PR for your Issue!
|
There was a problem hiding this comment.
Pull request overview
This PR updates the “Submission Guidelines” section in submission.html, primarily to reflect that Issue 5 (ONSRA) submissions are now closed and to hide the previously “open submissions” details.
Changes:
- Updates the visible status line from “Submissions are now open” to “Submissions are now closed”.
- Comments out the “currently accepting submissions” details block.
- Minor formatting/whitespace adjustments near the end of the file.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| <br /> --> | ||
| <br /> | ||
| <div style="text-align: left;"> |
There was a problem hiding this comment.
The <div style="text-align: left;"> is placed inside a <p class="intro">, which is invalid HTML (a <p> can’t contain block-level <div>). Browsers will auto-close the <p> early, leading to unpredictable layout. Close the <p> before starting this <div> (or replace the <p> with a <div> and use CSS for styling).
| <div style="text-align: left;"> | |
| </p> | |
| <div style="text-align: left;"> |
| Thank you to everyone sharing their work with us. Further updates will be communicated via email. | ||
|
|
||
| </div> | ||
| </div> --> |
There was a problem hiding this comment.
The closing </div> for the left-aligned block is currently inside an HTML comment (</div> -->), so the <div style="text-align: left;"> opened above is never closed. This will break the DOM structure for the rest of the page; move the closing </div> outside the comment (or comment out the opening <div> as well).
| </div> --> | |
| --> | |
| </div> |
Contributor Info
Your Name:
Related Issue
Fixes: #Issue Number
Description
Screenshots / Video (Before & After)
Before:
After:
Checklist
main) before committing.Extra Notes (Optional)