make the h2 for blog titles text align left.
<div class="small-11 small-centered columns">
<article id="<?php the_ID()?>" <?php post_class()?>>
<header class="entry-header">
- <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
<span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
</header>
<?php echo (function_exists('the_advanced_excerpt')) ? the_advanced_excerpt(): the_excerpt(); ?>
#blog-posts-over article .entry-header .meta.date {
font-size: 13px;
font-weight: bold; }
+ #blog-posts-over article h2 {
+ text-align: left; }
/*#searchform div input &[type="text"] {
width: 95%;
<div class="small-11 small-centered columns">
<article id="<?php the_ID()?>" <?php post_class()?>>
<header class="entry-header">
- <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
<span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
</header>
<?php echo (function_exists('the_advanced_excerpt')) ? the_advanced_excerpt(): the_excerpt(); ?>
font-weight: bold;
}
}
+ h2 {
+ text-align: left;
+ }
}
/*#searchform div input &[type="text"] {
width: 95%;
text-align: center;
color: #757575;
font-size: 12px;
+
}
#blog-posts-over > div {
margin: 25px 0;
footer.entry-meta {
background-color: $white;
}
+