• 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

addiesgram

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 17 posts - 61 through 77 (of 77 total)
← 1 2 3 4
  • Author
    Posts
  • May 14, 2015 at 11:56 am in reply to: Help with newly registered widget #152209
    addiesgram
    Participant

    Thank you for responding (we share the same first name : )

    This is the code I used to create and position the new custom widget:

    //* Register a new custom widget
    genesis_register_sidebar( array(
    'id' => 'custom-widget',
    'name' => __( 'Custom Widget', 'genesis' ),
    'description' => __( 'Custom Widget Area', 'childtheme' ),
    ) );
    
    //* Position the new custom widget below the header
    add_action( 'genesis_after_header', 'add_genesis_widget_area' );
    function add_genesis_widget_area() {
                    genesis_widget_area( 'custom-widget', array(
    		'before' => '<div class="custom-widget widget-area">',
    		'after'  => '</div>',
        ) );
    
    }
    

    The code you gave me:

    //* Reposition the primary navigation menu
    remove_action( 'genesis_before_header', 'genesis_do_nav' );
    add_action( ‘genesis_after_header’, ‘genesis_do_nav’ );
    

    placed the menu between the site title and the new custom widget -- I left it there so you can see it. Client wants the menu below the custom widget.

    May 10, 2015 at 12:49 am in reply to: Need more in the header section – help? #151400
    addiesgram
    Participant

    Unfortunately I'm not confident I could do the css customizations on my own. This leaves me a little stuck since none of the child themes come already set up for the layout she wants.

    May 9, 2015 at 1:29 pm in reply to: Need more in the header section – help? #151297
    addiesgram
    Participant

    Thank you for responding -- so, are you suggesting to use Genesis without a child theme? Or is there a child theme that would work? I was going to use Lifestyle Pro -- it has a primary and secondary sidebar, no header right sidebar. In Portfolio Pro the info in the Header Right area says it is not equipped for a widget and is intended to work with the custom menu. Not being a coder I would not know how to make it useable for my purposes (styling and repositioning).

    As an aside, is there a reason this very 'conventional' layout of the header elements (site title - header image - nav bar) became almost extinct with the advent of responsive design? Just curious.

    May 5, 2015 at 9:18 pm in reply to: Help — Secondary Nav menu won't go away #150309
    addiesgram
    Participant

    Ah! I thought the Primary menu location was the Header Right area. It's fixed now. Thanks for the help, really appreciate it.

    May 5, 2015 at 1:12 pm in reply to: Help — Secondary Nav menu won't go away #150270
    addiesgram
    Participant

    Thanks Jackie -- Yes, my custom menu is in the Header Right widget area. That is where I want it. The secondary location, below the header, is where I can't remove it even after unchecking the secondary location box in the Manage Locations area.

    April 7, 2015 at 1:48 pm in reply to: Lifestyle Pro – Help with header in 1024 window #146959
    addiesgram
    Participant

    Thank you, this worked. I really appreciate your help.

    April 5, 2015 at 2:07 am in reply to: Screenshots for Portfolio Pro? #146721
    addiesgram
    Participant

    Got it -- thanks Brad : )

    March 6, 2015 at 3:00 pm in reply to: Lifestyle Pro need help with responsive header image #143485
    addiesgram
    Participant

    In Design Palette Pro (with the Freeform CSS plugin), you can add css to one of four boxes with the following headers:

    This CSS will apply site-wide.
    This CSS will apply to 480 px and below.
    This CSS will apply to 768 px and below.
    This CSS will apply to 1024 px and above.

    Initially I added the code you gave me:

    .site-header {
        max-height: 300px;
    }

    to the site-wide box. That resolved the issue in desktop view and I believe in smaller mobile view. I then added the code to the "768 px and below" box but the unwanted piece of header is still showing. I'm not sure where to go from here. I can work with the styles.css file so if you have another suggestion I could try adding it directly in styles.css.

    Thanks again for your help with this. I'm so close, I really hope I can make this work.

    March 6, 2015 at 1:42 pm in reply to: Lifestyle Pro need help with responsive header image #143475
    addiesgram
    Participant

    Will do, but -- I just discovered that while the code works in desktop view, it is not working on my iPad. I don't have a smartphone so can't check it right now. Any thoughts on further refinements?

    Edit: That 'extra' piece of header area appears again at a certain point as I'm resizing the browser window (both Firefox and Safari). It disappears again as the window size gets smaller.

    I'm thinking maybe this approach to responsive header images is a little too unpredictable/unreliable?

    March 6, 2015 at 1:22 pm in reply to: Lifestyle Pro need help with responsive header image #143472
    addiesgram
    Participant

    Thanks so much for your help Lynn. Interesting -- when I added your max-height code to the styles.css file nothing changed, but when I added it in the Freeform CSS box in Design Palette Pro, it worked. I'm curious about why and if this an OK solution? And should I just leave the code in the styles.css file?

    March 3, 2015 at 3:25 am in reply to: Adding more space between footer items (Lifestyle Pro) #143012
    addiesgram
    Participant

    I'm getting it. Did you mean to say .credits-rights after .credits-title ?

    I'll try this tomorrow and post again if I run into trouble with it. Thanks so much for responding!

    March 3, 2015 at 2:49 am in reply to: Adding more space between footer items (Lifestyle Pro) #143003
    addiesgram
    Participant

    I followed the SP tutorial for customizing the footer which does not involve css. Hence the rather awkward way of creating spaces.

    //* Customize the entire footer
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    add_action( 'genesis_footer', 'sp_custom_footer' );
    function sp_custom_footer() {
    	?>
    	<p>&copy; Copyright 2015&nbsp;&nbsp;   Torey Rice, LMFT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;       All Rights Reserved   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     Site Design: <a href="http://healingartistwebsites.com/"target="_blank">Healing Artist Websites</a>  </p>
    	<?php
    }
    March 3, 2015 at 2:28 am in reply to: Adding more space between footer items (Lifestyle Pro) #143000
    addiesgram
    Participant

    Thanks Julia -- I need to become more CSS-fluent!

    February 21, 2015 at 3:52 am in reply to: Sixteen Nine Responsive Breakpoints Help Needed #141616
    addiesgram
    Participant

    I located the media queries sections of the style.css file but changing the max-width values really doesn't work unless you do adjust other css values in those sections. I had a web design pro experiment with the max-width values and he gave up because although the breakpoints changed a number of design elements got funky.

    Thank you for responding though.

    February 15, 2015 at 12:09 am in reply to: Changing responsive breakpoints on Sixteen Nine Pro #140892
    addiesgram
    Participant

    GeoffW, I'd sure like to know the solution you found. I have the same issue with Sixteen Nine.

    February 14, 2015 at 3:42 pm in reply to: Sixteen Nine Pro – keep menu at the left longer #140869
    addiesgram
    Participant

    I know I'm resurrecting an older thread but I just set up a Sixteen Nine theme and I'm having the same concern about how "early" the menu goes horizontal. I would like to still see the vertical (side) menu on my iPad 2 (9.5" x 7.31"), at least while holding the iPad in horizontal view.

    Did this issue ever get resolved?

    This is my first SP theme -- I sure need some help with this. Thanks

    site: http://sharonthompsonwilsonmft.com

    February 14, 2015 at 2:48 pm in reply to: Sixteen Nine – Change color of widget title text #140866
    addiesgram
    Participant

    Update -- I figured this one out : )

  • Author
    Posts
Viewing 17 posts - 61 through 77 (of 77 total)
← 1 2 3 4
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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