adding alt text to the images
authorAnthony Talarico <talarico@gaslightmedia.com>
Fri, 17 Aug 2018 15:20:39 +0000 (11:20 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Fri, 17 Aug 2018 15:20:39 +0000 (11:20 -0400)
parts/map-front.php
sections/footer.php
sections/top-bar.php
simple-staff-list-custom.css [new file with mode: 0644]

index 2cec119..8163c2a 100644 (file)
@@ -1,7 +1,7 @@
 <div id="glm-our-mission" class="row">
     <div class="small-12 medium-6 large-5 columns">
         <a href="<?php echo get_permalink(183); ?>">
-            <img src="<?php echo get_template_directory_uri(); ?>/assets/map.png" alt="">
+            <img src="<?php echo get_template_directory_uri(); ?>/assets/map.png" alt="District Map">
         </a>
     </div>
     <div class="small-12 medium-6 large-7 columns">
index 1fe18e6..9c9284c 100644 (file)
@@ -2,7 +2,7 @@
     <div class="row large-row">
         <div id="footer-logo" class="footer-section small-12 large-5 column">
             <a href="<?php echo bloginfo('home'); ?>">
-                <img src="<?php echo get_template_directory_uri();?>/assets/footer-logo.png">
+                <img src="<?php echo get_template_directory_uri();?>/assets/footer-logo.png" alt="Footer Logo">
             </a>
             
         </div>
index 9e9b46b..aec9a33 100644 (file)
@@ -5,7 +5,7 @@
                     </nav>
                     <div class="mobile-logo show-for-medium-down">
                         <a class="logo-link" href="<?php echo get_bloginfo('url'); ?>">
-                            <img src="<?php echo get_template_directory_uri();?>/assets/logo.png">
+                            <img src="<?php echo get_template_directory_uri();?>/assets/logo.png" alt="Char-EM ISD">
                         </a>
                     </div>
                     <nav class="tab-bar show-for-medium-down">
diff --git a/simple-staff-list-custom.css b/simple-staff-list-custom.css
new file mode 100644 (file)
index 0000000..8e06e3b
--- /dev/null
@@ -0,0 +1,59 @@
+
+                       /*  div wrapped around entire staff list  */
+                       div.staff-member-listing {
+                       }
+                       /*  div wrapped around each staff member  */
+                       div.staff-member {
+                               padding-bottom: 2em;
+                               border-bottom: thin dotted #aaa;
+                       }
+                       /*  "Even" staff member  */
+                       div.staff-member.even {
+                       }
+                       /*  "Odd" staff member  */
+                       div.staff-member.odd {
+                               margin-top: 2em;
+                       }
+                       /*  Last staff member  */
+                       div.staff-member.last {
+                               padding-bottom: 0;
+                               border: none;
+                       }
+                       /*  Wrap around staff info  */
+                       .staff-member-info-wrap {
+                               float: left;
+                               width: 70%;
+                               margin-left: 3%;
+                       }
+                       /*  [staff-bio-formatted]  */
+                       div.staff-member-bio {
+                       }
+                       /*  p tags within [staff-bio-formatted]  */
+                       div.staff-member-bio p {
+                       }
+                       /*  [staff-photo]  */
+                       img.staff-member-photo {
+                               float: left;
+                       }
+                       /*  [staff-email-link]  */
+                       .staff-member-email {
+                       }
+                       /*  [staff-name-formatted]  */
+                       div.staff-member-listing h3.staff-member-name {
+                               margin: 0;
+                       }
+                       /*  [staff-position-formatted]  */
+                       div.staff-member-listing h4.staff-member-position {
+                               margin: 0;
+                               font-style: italic;
+                       }
+                       /* Clearfix for div.staff-member */
+                       div.staff-member:after {
+                               content: "";
+                               display: block;
+                               clear: both;
+                       }
+                       /* Clearfix for <= IE7 */
+                       * html div.staff-member { height: 1%; }
+                       div.staff-member { display: block; }
+               
\ No newline at end of file