Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

Commit

Permalink
Merge branch 'development' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
rodica-andronache committed Jun 8, 2016
2 parents fb9d130 + 753ca90 commit 7ee05bc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 8 deletions.
4 changes: 1 addition & 3 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,7 @@ function zillah_customizer_script() {


function zillah_excerpt_more($more) {
global $post;

return '<span class="clearfix clearfix-post"></span><a href="'. esc_url( get_permalink($post->ID) ) . '" class="more-link">' . sprintf( __( 'Continue Reading %s', 'zillah' ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) . ' <span class="meta-nav">&rarr;</span>' ) . '</a>';
return '<span class="clearfix clearfix-post"></span><a href="'. esc_url( get_permalink(get_the_ID()) ) . '" class="more-link">' . sprintf( __( 'Continue Reading %s', 'zillah' ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) . ' <span class="meta-nav">&rarr;</span>' ) . '</a>';
}
add_filter('excerpt_more', 'zillah_excerpt_more');

Expand Down
31 changes: 26 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://themeisle.com/themes/zillah/
Author: ThemeIsle
Author URI: http://themeisle.com
Description: Zillah is a free blogging WordPress theme.
Version: 1.0.2
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zillah
Expand Down Expand Up @@ -339,7 +339,7 @@ h6 {
}

p {
margin-bottom: 2.5em;
margin-bottom: 2em;
}

dfn,
Expand Down Expand Up @@ -1298,7 +1298,7 @@ p.dropcap:first-letter {
}

.post-thumbnail-wrap img {
width: 100%;
width: 100%;
}

.entry-title-blog {
Expand Down Expand Up @@ -2150,6 +2150,7 @@ object {
.entry-content #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{
padding:0px 0px 20px 0px;
margin:5px;
background: #f6f6f6;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{
Expand Down Expand Up @@ -2263,6 +2264,21 @@ div.sharedaddy h3.sd-title:before {
color: #7fcaad;
}

/*--------------------------------------------------------------
## Disqus Comment Plugin
--------------------------------------------------------------*/
#disqus_thread {
max-width: 840px;
margin: 0 auto;
padding: 15px;
}

@media screen and (min-width: 1600px) {
#disqus_thread {
padding: 40px 15px;
}
}

/*--------------------------------------------------------------
## Responsive
--------------------------------------------------------------*/
Expand Down Expand Up @@ -2710,7 +2726,7 @@ div.sharedaddy h3.sd-title:before {
}

.main-navigation ul ul a {
width: 200px;
width: 100%;
}

.main-navigation ul ul li {
Expand Down Expand Up @@ -2785,7 +2801,7 @@ div.sharedaddy h3.sd-title:before {

.content-inner-wrap,
.comments-area-wrap .comments-area {
max-width: 840px;
max-width: 740px;
margin: 0 auto;
}

Expand Down Expand Up @@ -2965,4 +2981,9 @@ div.sharedaddy h3.sd-title:before {
padding: 124px 0;
}

.content-inner-wrap,
.comments-area-wrap .comments-area {
max-width: 840px;
}

}

0 comments on commit 7ee05bc

Please sign in to comment.