From 86a431b02076dcf92f72aa0b31450dd04fbf92c2 Mon Sep 17 00:00:00 2001 From: W1LMS <36493912+W1LMS@users.noreply.github.com> Date: Sun, 16 Jul 2023 15:49:54 -0700 Subject: [PATCH] Update Off-Grid_Activating_Hunting.html removed the "required" attribute (HTML5) that was causing the XHTML to fail validation. While the form works just fine regardless, just wanted the code to be clean. The fields for spotting your park, silo, summit are still required in order to spot yourself successfully. --- .../Off-Grid_Activating_Hunting.html | 104 +++++++++++------- 1 file changed, 65 insertions(+), 39 deletions(-) diff --git a/RMS Express/Global Folders/Templates/Parks & Summits Off-Grid/Off-Grid_Activating_Hunting.html b/RMS Express/Global Folders/Templates/Parks & Summits Off-Grid/Off-Grid_Activating_Hunting.html index 3ead1c6..681b514 100644 --- a/RMS Express/Global Folders/Templates/Parks & Summits Off-Grid/Off-Grid_Activating_Hunting.html +++ b/RMS Express/Global Folders/Templates/Parks & Summits Off-Grid/Off-Grid_Activating_Hunting.html @@ -14,7 +14,7 @@ /* Hides the other divs/pages until selected from the navbar */ #sya, #vsp, #vsa {display: none;} - /* Selection between Spotting and Viewing Spots */ + /* Seletion between Spotting and Viewing Spots */ .primaryNav {background-color: #293241; text-align: center;} .primaryNav ul {display: inline-block; list-style-type: none; margin: 0 auto; overflow: hidden; padding: 0;} .primaryNav ul li {float: left; font-size: 1.5em; margin: 0;} @@ -36,21 +36,24 @@ .activation input[type=text], .activation input.text {clear: both; font-size: 1.75em; width: 100%;} /* Elements for both POTAGW and APSPOT on the View Spots pages */ - .hunting fieldset {overflow: hidden;} + .hunting fieldset {clear: both; overflow: hidden;} .hunting legend, .optionalFilters {font-size: 1.5em; font-weight: bold;} - .hunting p {margin-bottom: 0;} .huntingOpts {clear: none; float: left;} .hunting label {clear: none; display: block; float: left; font-size: 1em; font-weight: bold; padding: 0 0 0 8px;} .hunting input[type=text], .hunting input.text {clear: both; font-size: 1.75em; margin: 0 110px; text-align: center;} input[type=radio], .hunting input.radio {clear: none; float: left; margin: 3px 0 0 15px;} input[type=submit], .hunting input.submit {clear: both; font-size: 1.75em; width: 100%;} - .optionalFilters {text-align: center;} + .optionalFilters {text-align: center; margin-bottom: 0;} .filters {margin: 0 auto; text-align: left; padding: 0;} /* Shared elements on both Spot Yourself and View Spots pages */ + .required-field::after {content: "*"; color: red;} .examples {font-size: 0.9em; font-style: italic;} .version {text-align: right; font-size: 0.75em;} .author {text-align: center;} + .w3c {width: 50%; float: left;} + .version-revision {margin-left: 50%;} + .footer {clear: both;}