Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter phoenix360

    (@phoenix360)

    It works! I added a widget using Query Wrangler per your advice and it now works! By the way, Page Builder is the best plugin I’ve used so far. Thanks so much, @misplon!

    Thread Starter phoenix360

    (@phoenix360)

    Thanks CrouchingBruin,

    I didn’t know that you can change it from there. I’m a newbie. It works when I set it to display the latest posts. I’m using Page Builder and when I set it to static page for my front page, there’s no pagination. I’m using Page Builder because it makes it easier to divide up my page since I don’t know CSS/PHP too well.

    Nevermind, I figured it out.

    Thread Starter phoenix360

    (@phoenix360)

    I figured it out. I had to make two columns, place the image in the left column and the title and text excerpt in the right column:

    <?php
    /**
     * The default template for displaying content
     *
     * Used for both single and index/archive/search.
     *
     * @package WordPress
     * @subpackage Twenty_Thirteen
     * @since Twenty Thirteen 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">
    		<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
    		<div class="entry-thumbnail">
    
    		</div>
    
    		<?php endif; ?>
    
    	</header><!-- .entry-header -->
    
    <?php if ( is_search() || is_author() ||  is_tag() ||  is_archive()  || is_home () ) : ?>
    
    <div class="entry-summary">
    
      <div id="container">
      <div id="row">
    
    <div id="left">
     <div class="excerpt-thumb">
         <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
         <?php the_post_thumbnail('excerpt-thumbnail'); ?>
         </a>
    </div>
    </div>
      	<div id="right">
        <div class="entry-cat">
     <?php twentythirteen_entry_meta_cat(); ?>
     </div>
      		<?php if ( is_single() ) : ?>
    		<h6 class="archive-title"><?php the_title(); ?></h6>
    		<?php else : ?>
    		<h6 class="archive-title">
    			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
    		</h6>
    		<?php endif; // is_single() ?>
    
            <?php the_excerpt(); ?>
               <div class="entry-cat">
     <?php twentythirteen_entry_date(); ?>
     <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
     </div>
      	</div>
        </div>
        </div>
    
    	</div><!-- .entry-summary -->
    
    	<?php else : ?>
    	<div class="entry-content">
    		<?php
    			/* translators: %s: Name of current post */
    			the_content( sprintf(
    				__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    				the_title( '<span class="screen-reader-text">', '</span>', false )
    			) );
    
    			wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );
    		?>
    	</div><!-- .entry-content -->
    
    	<?php endif; ?>
    
    </article><!-- #post -->

    Hi jamn805, I am also trying to edit the placement of the entry date, etc… Were you able to figure out how to do this?

    Thread Starter phoenix360

    (@phoenix360)

    I figured it out. Just had to change the max-width from 1600px to 100% in the child theme.

    .site {
    max-width: 100%;
    width: 100%;
    }

    Thread Starter phoenix360

    (@phoenix360)

    Hi Misplon,

    I found out the problem and fixed it. It was my template (Twenty Thirteen), not the plugin. I just had to adjust the style.css in my child theme. The CSS in the template was: .widget li {padding: 5 px 0;}. I replaced the 5 px with 0 px and that fixed it.

    Thanks!

    Thanks, shufflehound and SomniumLucidus!

    Thread Starter phoenix360

    (@phoenix360)

    I was able to get rid of the border by setting the image in foreground instead of background. But here’s how it looks like when I set it in background:
    https://wordpresstest.tzuchimedicalfoundation.org/

    The slider images are 1920px by 620px.

    Hi,

    Would it be possible to adjust the logo size using a child theme and editing the style.css or one of the php files?

    Hi,

    Would it be possible to adjust the logo size using a child theme and editing the style.css?

Viewing 11 replies - 1 through 11 (of 11 total)