dadcamp
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: [Fashionistas] Removing AuthorshipOkay, so I’m new to the css editing thing.. I’ve been editing my theme files directly. Changing fonts, colors, alignments, things like that.
So what will happen when there is an update?
Forum: Themes and Templates
In reply to: [Fashionistas] Removing AuthorshipHead to single.php and remove the following block of code:
<div class="clearfix author-info"> <div class="author-photo"><?php echo get_avatar( get_the_author_meta( 'ID' ) , 75 ); ?></div> <div class="author-content"> <h3><?php the_author(); ?></h3> <p><?php the_author_meta( 'description' ); ?></p> <div class="author-links"> <a>" rel="me">More Posts</a> <?php if ( get_the_author_meta( 'twitter' ) ) : ?> <a>">Twitter</a> <?php endif; ?> <?php if ( get_the_author_meta( 'facebook' ) ) : ?> <a>">Facebook</a> <?php endif; ?> <?php if ( get_the_author_meta( 'linkedin' ) ) : ?> <a>">LinkedIn</a> <?php endif; ?> </div> </div> <!-- .author-info --></div>Forum: Themes and Templates
In reply to: [Fashionistas] Blockquote Codethank you so much, fixed it!
Forum: Themes and Templates
In reply to: [Fashionistas] Centering Posts On Home Pageon the content.php file, add align=”center” to the <div>
the original line of code:
<div class=”entry-thumbnail”>
the updated code to get the thumb centered:
<div class=”entry-thumbnail” align=”center”>
Good luck!
Viewing 4 replies - 1 through 4 (of 4 total)