Forum Replies Created
-
AuthorPosts
-
ChristineLeiser
ParticipantPerfect. Thank you.
ChristineLeiser
ParticipantChristineLeiser
ParticipantThank you. I understand that, when I do that, they list vertically, I want them horizontally.
ChristineLeiser
ParticipantBrunch pro and niche pro - happening in both instances.
jaybirdpublishing.com - I've removed them for now.
Thank you.ChristineLeiser
ParticipantThank you Anita. I am definitely overwhelmed.
ChristineLeiser
ParticipantThe registration page. Where maybe, they can contribute to their own author profile as well as having a nicer design.
ChristineLeiser
ParticipantThe idea is to have the front page be just author boxes, which I’ve got, but I want them displayed in a grid like the grid posts and pages does. Does that make sense?
ChristineLeiser
ParticipantYou were absolutely correct. Thank you.
ChristineLeiser
ParticipantThank you. I will check that out.
ChristineLeiser
ParticipantExactly.
ChristineLeiser
ParticipantThird person, same issue.
ChristineLeiser
ParticipantPerfect! Thank you so much! I was definitely over complicating things (I do that all the time.) again, thank you.
ChristineLeiser
ParticipantThank you Victor!
Does it matter where in the file I put that?
Just "Template Name: Blog" ?ChristineLeiser
Participantthank you, Brad. There is already a page_blog.php - It's content is as follows:
<?php
/**
* Showcase Pro
*
* This file edits the blog page page template in the Showcase Pro Theme.
*
* @package Showcase
* @author Bloom
* @license GPL-2.0+
* @link http://my.studiopress.com/themes/showcase/
*/// Add the with-page-header class
add_filter( 'body_class', 'showcase_blog_page_header_body_class' );
function showcase_blog_page_header_body_class( $classes ) {$posts_page_id = get_option('page_for_posts');
if( has_post_thumbnail($posts_page_id) )
$classes[] = 'with-page-header';return $classes;
}
// Add the Blog Page Header
remove_action( 'genesis_after_header', 'showcase_page_header', 8 );
add_action( 'genesis_after_header', 'showcase_blog_page_header', 8 );
function showcase_blog_page_header() {
$output = false;
$posts_page_id = get_option('page_for_posts');
$image = get_post_thumbnail_id( $posts_page_id );if( $image ) {
// Remove the page title because we're going to add it later
remove_action( 'genesis_before_loop', 'genesis_do_posts_page_heading' );$image = wp_get_attachment_image_src( $image, 'showcase_hero' );
$background_image_class = 'with-background-image';
$title = get_the_title($posts_page_id);$output .= '<div class="page-header bg-primary with-background-image" style="background-image: url(' . $image[0] . ');"><div class="wrap">';
$output .= '<div class="header-content"><h1>' . $title . '</h1></div>';
$output .= '</div></div>';
}if( $output )
echo $output;
}genesis();
I'm not sure what's missing that keeps it from providing me with a blog page template.
Any ideas?
Thank you.
ChristineLeiser
ParticipantThank you so much!
ChristineLeiser
ParticipantInterestingly enough, when I installed the child theme onto the new site, the color options aren't there.
ChristineLeiser
ParticipantThank you, Anita.
ChristineLeiser
ParticipantI figured it out. Thank you! If someone is having this issue, I commented out the size in the .css file and then added this to every media query and adjusted accordingly:
} .header-image .title-area, .header-image .site-title, .header-image .site-title a { min-height: 200px; /* change this in every screen size*/ }
ChristineLeiser
ParticipantThank you. I'm really struggling with exactly how and where to do that within the media queries. It's really only a problem on the mobile (phone screens), tablets are fine. So I assume that I'm working with "@media only screen and (max-width: 420px)" - I just don't see what I have to adjust within that code.
ChristineLeiser
ParticipantI didn't think that was applicable since it was just the text I was trying to get rid of, and I had already replaced the logo on the site header, but I tried it and that's exactly what I needed, which gave me an even better idea. Thank you so much.
-
AuthorPosts