• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

mboetger

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 23 total)
1 2 →
  • Author
    Posts
  • September 16, 2020 at 4:40 pm in reply to: Executive Pro #501074
    mboetger
    Participant

    This is the code from the demo: <div class="three-fourths first">Here's a great place to write something specific that you want your visitors to read.</div>
    <div class="one-fourth">Contact Us Today</div>

    September 16, 2020 at 4:37 pm in reply to: Executive Pro #501073
    mboetger
    Participant

    So when I do that it piles them on top of each other. How do I make them all separate?

    April 10, 2017 at 10:17 am in reply to: Streamline Pro #204560
    mboetger
    Participant

    I need the facebook icon moved up, how can I do it?

    April 7, 2017 at 10:12 am in reply to: Streamline Pro #204444
    mboetger
    Participant

    I made it 0px and it went away, not even sure where it went.

    April 6, 2017 at 12:34 pm in reply to: Streamline Pro #204402
    mboetger
    Participant

    I would like the icon to the right of the horse on the right hand side.

    March 31, 2017 at 4:16 pm in reply to: Streamline Pro #204137
    mboetger
    Participant

    I have got most of the header fixed now, but need help with getting the social follow button moved up.

    March 31, 2017 at 1:23 pm in reply to: Streamline Pro #204130
    mboetger
    Participant

    I also need help with the header image needing to be 960 x 120

    March 31, 2017 at 12:22 pm in reply to: Streamline Pro #204128
    mboetger
    Participant

    So I have changed that now, how do I change the color of the Read more button?

    March 15, 2017 at 10:11 am in reply to: Author Pro #203158
    mboetger
    Participant

    That worked great. What about in the front page 3 area, how do I make those graphics larger, it is padding as well?

    March 15, 2017 at 9:43 am in reply to: Author Pro #203153
    mboetger
    Participant

    The link is good, I took it off maintenance mode.

    February 13, 2017 at 2:12 pm in reply to: Going Green Pro Header #201072
    mboetger
    Participant

    The client now has added another icon to the menu and one of the icons has bumped down to the next line, how do I increase the area to bump the icon in line with the rest?

    February 1, 2017 at 2:45 pm in reply to: Header Image in Going Green Pro #200388
    mboetger
    Participant

    I ended up changing the line height to 5 and it works.

    site-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 5;
    margin: 0 0 12px;
    }

    January 31, 2017 at 4:24 pm in reply to: Header Image in Going Green Pro #200346
    mboetger
    Participant

    I would really like help with this if anyone can help.

    January 19, 2017 at 4:25 pm in reply to: Going Green Pro Header #199699
    mboetger
    Participant

    Is it possible to have the icons line up with the bottom of the Qualls Ag Lab logo?

    January 19, 2017 at 12:52 pm in reply to: Going Green Pro Header #199680
    mboetger
    Participant

    OK. I added two icons to the header right widget area. Take a look and see what advice you can give me.
    http://www.quallsag.com/

    January 16, 2017 at 12:25 pm in reply to: Going Green Pro Header #199489
    mboetger
    Participant

    I was able to change the header image, but now when I go to put something in the header right, it doesn't line up with the new header. How do I fix this problem?

    November 4, 2016 at 5:09 pm in reply to: Smart Passive Income Theme #195747
    mboetger
    Participant

    What do I replace the wrap class with? Every area has the wrap class.
    if ( is_active_sidebar( 'front-page-1' ) || is_active_sidebar( 'front-page-2' ) || is_active_sidebar( 'front-page-3-a' ) || is_active_sidebar( 'front-page-3-b' ) || is_active_sidebar( 'front-page-4' ) ) {

    //* Add front-page body class
    add_filter( 'body_class', 'spi_body_class' );

    //* Force full width
    add_filter( 'genesis_site_layout', '__genesis_return_full_width_content' );

    //* Add the scripts and styles
    add_action( 'wp_enqueue_scripts', 'spi_home_scripts_and_styles' );

    //* Remove default loop
    remove_action( 'genesis_loop', 'genesis_do_loop' );

    //* Add the widget areas
    add_action( 'genesis_loop', 'spi_home_widget_loop' );

    //* Modify the read more link
    add_filter( 'get_the_content_limit', 'spi_content_limit_read_more_markup', 10, 3 );

    }

    }

    //* Front page body class
    function spi_body_class( $classes ) {

    $classes[] = 'front-page';

    return $classes;

    }

    //* Front page scripts and styles
    function spi_home_scripts_and_styles() {

    wp_enqueue_style( 'front-page-styles', get_stylesheet_directory_uri() . '/css/front-page.css', array(), CHILD_THEME_VERSION );

    }

    //* Function to output active widget areas
    function spi_home_widget_loop() {

    echo '<h2 class="screen-reader-text">' . __( 'Main Content', 'smart-passive-income-pro' ) . '</h2>';

    genesis_widget_area( 'front-page-1', array(
    'before' => '<div class="flexible-widgets front-page-1 color' . spi_widget_area_class( 'front-page-1' ) . ' widget-area"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-2', array(
    'before' => '<div class="flexible-widgets front-page-2 image' . spi_widget_area_class( 'front-page-2' ) . ' widget-area"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-3-a', array(
    'before' => '<div class="flexible-widgets front-page-3 front-page-3-a color' . spi_widget_area_class( 'front-page-3-a' ) . ' widget-area"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-3-b', array(
    'before' => '<div class="flexible-widgets front-page-3 front-page-3-b color' . spi_widget_area_class( 'front-page-3-b' ) . ' widget-area"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    genesis_widget_area( 'front-page-4', array(
    'before' => '<div class="flexible-widgets front-page-4' . spi_widget_area_class( 'front-page-4' ) . ' widget-area"><div class="wrap">',
    'after' => '</div></div>',
    ) );

    }

    //* Modify the read more link
    function spi_content_limit_read_more_markup( $output, $content, $link ) {

    $output = sprintf( '<p>%s …</p>%s', $content, str_replace( '…', '', $link ) );
    return $output;

    }

    November 4, 2016 at 12:27 pm in reply to: Smart Passive Income Theme #195735
    mboetger
    Participant

    I have taken the site off of maintenance mode.

    August 22, 2016 at 3:55 pm in reply to: Executive Pro #191833
    mboetger
    Participant

    That worked, thanks for the help!

    August 22, 2016 at 11:15 am in reply to: Executive Pro #191798
    mboetger
    Participant

    I upgraded to Genesis 2.3.1 on my other site that I used the Executive Pro on and now get 404 error on everything that I click on the menu.
    http://vrc007.com/

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 23 total)
1 2 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble