phoenix360
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] PaginationIt 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!
Forum: Themes and Templates
In reply to: [Twenty Thirteen] number of posts per pageThanks 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.
Forum: Themes and Templates
In reply to: Edit entry metaNevermind, I figured it out.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Placement of title above text excerptI 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">→</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 -->
Forum: Themes and Templates
In reply to: Edit entry metaHi jamn805, I am also trying to edit the placement of the entry date, etc… Were you able to figure out how to do this?
Forum: Themes and Templates
In reply to: [Twenty Thirteen] How to full-width to edge of the screenI figured it out. Just had to change the max-width from 1600px to 100% in the child theme.
.site {
max-width: 100%;
width: 100%;
}Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Carousel slider border problemHi 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!
Forum: Themes and Templates
In reply to: [Maskitto Light] Image and slider sizeThanks, shufflehound and SomniumLucidus!
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Carousel slider border problemI 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.
Forum: Themes and Templates
In reply to: [Maskitto Light] Image and slider sizeHi,
Would it be possible to adjust the logo size using a child theme and editing the style.css or one of the php files?
Forum: Themes and Templates
In reply to: [Maskitto Light] Image and slider sizeHi,
Would it be possible to adjust the logo size using a child theme and editing the style.css?