BuilderChild-Adept
From IThemes Codex
Builder child theme Adept Live Demo
Contents |
How to make text appear for site title
Adept's style.css sets a image (images/logo.png) as background for site title (.builder-module-header .site-title). If you would like to have your site's title or your own custom text appear instead of the image, add the following at the end of child theme's style.css:
.builder-module-header .site-title {
background: none;
text-indent: 0;
width: auto;
height: auto;
font-size: 2.3em;
margin-bottom: 10px;
}
.site-tagline {
margin-left: 5px;
}
Sample before and after:
Font used in demo site's header image
The font used in Adept demo site's header, Liberator can be downloaded from here.
How to add show number of comments below post title
1. Edit child theme's content.php.
Add
<?php edit_post_link( 'Edit', ' <span class="">· ', '</span>' ); ?> <?php do_action( 'builder_comments_popup_link', '<span class="comments right">', '</span>', __( 'Comments %s', 'it-l10n-BuilderChild-Adept' ), __( '(0)', 'it-l10n-BuilderChild-Adept' ), __( '(1)', 'it-l10n-BuilderChild-Adept' ), __( '(%)', 'it-l10n-BuilderChild-Adept' ) ); ?>
below
<?php printf( __( 'by %s', 'it-l10n-BuilderChild-Adept' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?>
The first line in the code being added causes a Edit link to appear. If you do not wish to have it, do not add that line.
2. Repeat the above in content-single.php.

