font-family: Times , sans-serif;
font-size: 11px !important;
}
+.hours {
+ font-family: Times , sans-serif;
+ font-size: 11px !important;
+ margin-top: 1.25rem;
+}
+.hours > b {
+ display: block;
+ font-weight: bold;
+ font-size: 12px !important;
+ font-family: Arial, sans-serif;
+ margin-top: 1.25rem;
+}
footer {
float: none;
text-align: center;
</div>
</div>
<div class="row">
- <div class="small-12 medium-3 columns">
- <div class="center">
- <h3>Petoskey</h3>
- <p>900 Spring Street</p>
- <p>Petoskey, MI 49770</p>
- <p>231-347-2501 ⋅ 800-968-2501</p>
- <p class="day">Monday - Friday:</p>
- <p class="time">7:00 am - 5:00 pm</p>
- <p class="day">Saturday:</p>
- <p class="time">8:00 am - Noon, & by Appointment</p>
- <p class="day">Closed Sun</p>
- </div>
- </div>
- <div class="small-12 medium-3 columns">
- <div class="center">
- <h3>Harbor Springs</h3>
- <p>8600 Moeller Drive</p>
- <p>Harbor Springs, MI 49740</p>
- <p>231-348-2990 ⋅ 800-968-2990</p>
- <p class="day">Monday - Friday:</p>
- <p class="time">7:00 am - 5:00 pm</p>
- <p class="day">Saturday:</p>
- <p class="time">8:00am - Noon, & by Appointment</p>
- <p class="day">Closed Sun</p>
- </div>
- </div>
- <div class="small-12 medium-3 columns">
- <div class="center">
- <h3>Gaylord</h3>
- <p>3689 Old 27 South</p>
- <p>Gaylord, MI 49735</p>
- <p>989-732-8862 ⋅ 888-732-8862</p>
- <p class="day">Monday - Friday:</p>
- <p class="time">7:00 am - 5:00pm, & by Appointment</p>
- <p class="day">Closed Sat & Sun</p>
- </div>
- </div>
- <div class="small-12 medium-3 columns">
- <div class="center">
- <h3>Traverse City</h3>
- <p>777 US 31 South</p>
- <p>Traverse City, MI 49685</p>
- <p>231-943-1180</p>
- <p class="day">Monday - Friday:</p>
- <p class="time">7:00 am - 5:00pm, & by Appointment</p>
- <p class="day">Closed Sat & Sun</p>
- </div>
- </div>
+ <?php if (is_active_sidebar('sidebar-f')) :?>
+ <?php dynamic_sidebar('sidebar-f');?>
+ <?php endif;?>
</div>
<div class="row">
<div class="small-11 columns" id="divide_bottom">
$(this).toggleClass('open');
$(this).siblings('ul').toggleClass('open');
});
-// $('.off-canvas-list').find('a.toggle').click(function(){
-// console.log('clicked me!');
-// $(this).toggleClass('open');
-// $(this).siblings('ul').toggleClass('open');
-// });
});
</script>
<?php wp_footer();?>
return sprintf($format, $w, $h);
}
add_action('wp_enqueue_scripts', 'preston_feather_scripts');
+add_action('widgets_init', 'preston_widget_init');
+if (!function_exists('preston_widget_init')) {
+
+ function preston_widget_init()
+ {
+ register_sidebar(array(
+ 'name' => __('Footer'),
+ 'id' => 'sidebar-f',
+ 'description' => __('Appears in Footer Area')
+ ));
+ }
+
+}
?>
\ No newline at end of file
</div>
<div class="row content">
<div class="small-11 small-centered columns">
- <div class="row">
- <div class="small-12 columns">
- <ul class="breadcrumbs">
+ <div class="row">
+ <div class="small-12 columns">
+ <ul class="breadcrumbs">
- </ul>
- </div>
- </div>
+ </ul>
+ </div>
+ </div>
<div class=" row">
- <div class="small-12 columns">
- <?php if(have_posts()) : while(have_posts()): the_post();?>
- <h1><?php the_title();?></h1>
- <?php the_content();?>
- <?php endwhile; else:?>
- <p><?php _e('Sorry, no posts yet');?></p>
- <?php endif;?>
- </div>
+ <div class="small-12 columns">
+ <?php if(have_posts()) : while(have_posts()): the_post();?>
+ <h1><?php the_title();?></h1>
+ <?php the_content();?>
+ <?php endwhile; else:?>
+ <p><?php _e('Sorry, no posts yet');?></p>
+ <?php endif;?>
+ </div>
</div>
<?php get_footer(); ?>
\ No newline at end of file
</div>
<div class="row content">
<div class="small-11 small-centered columns">
- <div class="row">
- <div class="small-12 columns">
- <?php
- if(function_exists('bcn_display') && !is_front_page()) {
- echo "<div class=\"breadcrumbs\">";
- bcn_display();
- echo "</div>";
- }
- ?>
- </div>
- </div>
+ <div class="row">
+ <div class="small-12 columns">
+ <?php
+ if(function_exists('bcn_display') && !is_front_page()) {
+ echo "<div class=\"breadcrumbs\">";
+ bcn_display();
+ echo "</div>";
+ }
+ ?>
+ </div>
+ </div>
<div class=" row">
- <div class="small-12 columns">
- <?php if(have_posts()) : while(have_posts()): the_post();?>
- <h1><?php the_title();?></h1>
- <?php the_content();?>
- <?php endwhile; else:?>
- <p><?php _e('Sorry, no posts yet');?></p>
- <?php endif;?>
- </div>
+ <div class="small-12 columns">
+ <?php if(have_posts()) : while(have_posts()): the_post();?>
+ <h1><?php the_title();?></h1>
+ <?php the_content();?>
+ <?php endwhile; else:?>
+ <p><?php _e('Sorry, no posts yet');?></p>
+ <?php endif;?>
+ </div>
</div>
<?php get_footer(); ?>
\ No newline at end of file