speryea
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Line ItemThank you!
Forum: Themes and Templates
In reply to: Customizing RetrotaleThis the navigation image I am trying to add. It’s a PNG file and I know I have to chop of the end a bit. ??
Forum: Fixing WordPress
In reply to: Post Navigation and MarginsIt worked almost, except for it moved my tables. I added float: right; because I liked the placement of the banners, but even removing the float it still moved my tables.
https://s24.postimg.org/i6ctdh4r9/Untitled.png
}
.site-container {
background: rgba(0, 0, 0, 0) url(“https://caffeinatedandcreative.com/wp-content/uploads/2015/07/smallerheader-copy.png”) no-repeat scroll center top;
margin: center;
float: right;
padding-left: 20px;
min-height: 330px;
width: 120%;
}Forum: Fixing WordPress
In reply to: Borders and CSSThank you soooooo much!
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Simple Share Buttons CSS Class NameI was just going to ask the SAME question! Did you figure it out?
Forum: Themes and Templates
In reply to: Sugar and Spice: Show latest Post in full, others in excerptsI honestly still am not happy with it actually lol but, I think I just kept playing with different combinations of the layouts/post shown drop down menus under the theme options.
Forum: Fixing WordPress
In reply to: Showing Full Posts!Nvermind…resolved after playing with it for a little.
Forum: Fixing WordPress
In reply to: Showing Full Posts!Forum: Fixing WordPress
In reply to: Showing Full Posts!Forum: Fixing WordPress
In reply to: Showing Full Posts!I am still a newbie at CSS and all that but, I believe this was the part I changed: content loop php.
<?php /** * @package Sugar & Spice */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class('excerpt cf'); ?>> <div class="post-thumbnail"> <?php if (has_post_thumbnail()) { ?> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( ); ?> </a> <?php } ?> </div> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php sugarspice_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <div class="entry-content"> <?php the_content( __('Continue reading →', 'sugarspice') ) ?> </div><!-- .entry-content --> <div class="entry-summary"> <?php echo get_the_excerpt(); ?> <a class="more-link entry-meta" href="<?php the_permalink(); ?>"><?php _e('Continue reading →', 'sugarspice'); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'sugarspice' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-summary --> </article><!-- #post-## -->
However, I am seeing it is almost the same as the content.php so I am not sure where the problem is.
<?php /** * @package Sugar & Spice */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <div class="entry-meta"> <?php sugarspice_posted_on(); ?> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <?php if( !is_paged() && $wp_query->current_post == 0 ) { the_content( __('Continue reading →', 'sugarspice') ); } else { the_excerpt(); } ?> </div><!-- .entry-content --> <footer class="entry-meta bottom"> <?php sugarspice_post_meta(); ?> </footer><!-- .entry-meta --> </article><!-- #post-## -->
Forum: Fixing WordPress
In reply to: Showing Full Posts!Thank you. I got it to work…however not sure where things went wrong…my posts are repeating the first part of the post on the bottom of the post….this only is on the main page. If I click on the post nothing is wrong. The picture will hopefully explain it more. It’s doing it on all the posts on the front page. The Modern Musings
Forum: Themes and Templates
In reply to: Theme: Sugar and Spice – Save My SanityThank you for the help but, that is not the text needed to remove. I double checked and realized I deleted my test posts so the stuff wasn’t showing. It only happens when more than one post is written for each category. For example I clicked on Randomness after writing two mock up posts. The latest blog post is fine but, the first one has the icky fonts.
https://s11.postimg.org/hq7y6bf4z/Fix.jpg
As for the category titles, where exactly does the code go in the CSS? Thank you!
Forum: Themes and Templates
In reply to: Theme: Sugar and Spice – Save My SanityWith some more playing around I have noticed each time I post something under a certain category, the category title remains. It is the exact same font and is black just like the aforementioned Navigation. For example if I click About in my main nav bar it takes me obviously to the latest post for that category but, really don’t like the black and unnecessary title for each category! Please help.