Browse Source

decruft/fix: drop contact page icons + fix white-on-white navbar brand

- page-contact.php: remove the 7 fa fa-* spans (address/phone/email + subscribe/
  chat/pay/guests links all have text labels). Theme-wide FA usage now 0.
- style.css: the brand carries .light{color:#fcfcfc!important}, which beat the
  no-!important body.contact rule → brand was near-white on contact's light
  (#F6F6F6) bg. Add !important to body.contact .site-title a{color:#000} so its
  higher specificity wins; brand is now readable on contact.
windhamdavid 10 hours ago
parent
commit
397381624e
3 changed files with 8 additions and 8 deletions
  1. 7 7
      page-contact.php
  2. 1 1
      style.css
  3. 0 0
      v4-style.min.css

+ 7 - 7
page-contact.php

@@ -8,11 +8,11 @@
 					<p>Please provide as much information as possible so that I can save us both some time with an adequate response.</p>
 
 
-					<h5 class="contact"><span class="fa fa-home fa-fw"></span> Address</h5>
+					<h5 class="contact">Address</h5>
 					<p>102 Glenridge Circle<br/>Greenwood, SC 29646</p>
-					<h5 class="contact"><span class="fa fa-phone fa-fw"></span> Phone</h5>
+					<h5 class="contact">Phone</h5>
 					<p>803-712-3283</p>
-					<h5 class="contact"><span class="fa fa-envelope-o fa-fw"></span> Email</h5>
+					<h5 class="contact">Email</h5>
 
 					<p>
 						<script type="text/javascript">
@@ -36,10 +36,10 @@
 							//]]>
 						</script>
 					</p>
-          <h5><a href="<?php echo home_url( '/' ); ?>mail/" title="Newsletter" class="list-group-item"><span class="fa fa-paper-plane-o fa-fw"></span> Subscribe</a></h5>
-          <h5><a href="https://davidwindham.com/rtc/" class="list-group-item"><span class="fa fa-comment fa-fw"></span> Chat</a></h5>
-          <h5><a href="<?php echo home_url( '/' ); ?>pay" class="list-group-item"><span class="fa fa-credit-card fa-fw"></span> Pay</a></h5>
-          <h5><a href="<?php echo home_url( '/' ); ?>contact/guests" title="Guestbook" class="list-group-item"><span class="fa fa-pencil-square fa-fw"></span> Guests</a></h5>
+          <h5><a href="<?php echo home_url( '/' ); ?>mail/" title="Newsletter" class="list-group-item">Subscribe</a></h5>
+          <h5><a href="https://davidwindham.com/rtc/" class="list-group-item">Chat</a></h5>
+          <h5><a href="<?php echo home_url( '/' ); ?>pay" class="list-group-item">Pay</a></h5>
+          <h5><a href="<?php echo home_url( '/' ); ?>contact/guests" title="Guestbook" class="list-group-item">Guests</a></h5>
 				</div>
 				<div class="col-sm-8">
 					<?php gravity_form(1, false, false, false, '', false); ?>

+ 1 - 1
style.css

@@ -86,7 +86,7 @@ body.contact {
 	background-color: #F6F6F6;
 }
 	body.contact .site-title a {
-		color:#000;
+		color:#000 !important; /* beat .light{color:#fcfcfc!important} — contact has a light bg */
 	}
 
 @media screen and (max-width: 768px) {

File diff suppressed because it is too large
+ 0 - 0
v4-style.min.css


Some files were not shown because too many files changed in this diff