• 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

Pixel Frau

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 356 total)
1 2 3 … 16 17 18 →
  • Author
    Posts
  • December 18, 2015 at 1:15 pm in reply to: Add Phone Number *above* Header Menu – Workstation Pro #174261
    Pixel Frau
    Member

    You can use a different hook to add the widget area within the header.

    December 18, 2015 at 11:51 am in reply to: After Entry Widget Area customisations in the Metro Pro Theme #174237
    Pixel Frau
    Member

    Find the section of your stylesheet that starts with:
    /* Genesis eNews Extended--------------------------------------------- */

    See how almost everything starts with.sidebar? That means all the styling only applies to an eNews Extended widget in your sidebar. No specific styling for the widget is specified for the footer. You'll need to add additional styling that applies to the footer widgets.

    December 18, 2015 at 11:34 am in reply to: How can I make this…? [No Sidebar Pro] #174235
    Pixel Frau
    Member

    You can enable footer widgets to get the standard footer widgets at the bottom. And add a new widget area above the footer for the pre-footer section.

    December 18, 2015 at 11:30 am in reply to: Add Phone Number *above* Header Menu – Workstation Pro #174234
    Pixel Frau
    Member

    You could add a new widget area to appear above the header.

    http://briangardner.com/add-widget-area-site-header/

    December 18, 2015 at 11:28 am in reply to: Lost my sidebar menus #174233
    Pixel Frau
    Member

    Have you posted in the plugin's support forum? That's probably a better place to ask.

    December 18, 2015 at 11:19 am in reply to: How to hide Simple Social Icons widget @ mobile? #174232
    Pixel Frau
    Member

    You would add some custom CSS to the media query. For example, if you want it to do that on screen sizes of 800px or less, you'd add the extra styling to the @media only screen and (max-width: 800px) media query that's at the end of your stylesheet.

    November 6, 2015 at 10:02 am in reply to: Daily Dish Pro footer alignment issue #170324
    Pixel Frau
    Member

    This is from the original Daily Dish CSS:

    .footer-widgets {
    border-top: double #ddd;
    clear: both;
    padding: 40px 0 20px;
    }

    This is what I see when inspecting your site's CSS:

    body.gppro-custom .footer-widgets {
    background-color: #eee;
    border-width: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px
    }

    The left and right padding is causing the issue. It looks like it was added via a plugin.

    To solve the problem, either remove that left and right padding from .footer-widgets or reduce the margin-right to 40px for .footer-widgets-1.

    November 5, 2015 at 9:03 am in reply to: Customizing the Title Position in Genesis Responsive Slider #170220
    Pixel Frau
    Member

    It's pretty much impossible to help without being able to see the site, inspect the code and see what CSS changes you've already made.

    November 5, 2015 at 8:57 am in reply to: Daily Dish Pro footer alignment issue #170218
    Pixel Frau
    Member

    The padding you added to .footer-widgets is causing it. Either remove that padding or reduce the margin-right for .footer-widgets-1 to 40px.

    November 5, 2015 at 8:48 am in reply to: streamline Pro Header Logo #170217
    Pixel Frau
    Member

    You would need to change the default size in functions.php and then adjust the CSS to accommodate the larger logo size.

    November 5, 2015 at 8:47 am in reply to: Altitude Pro – Customizing Menu #170216
    Pixel Frau
    Member

    There's a tutorial for this on Sridhar's website (requires membership).

    November 5, 2015 at 8:44 am in reply to: Make Custom Page with Featured Post #170215
    Pixel Frau
    Member

    You could use a modified loop or add a widget area to the landing page and use the Featured Posts widget.

    October 30, 2015 at 10:10 am in reply to: Front Page Altitude Changes #169634
    Pixel Frau
    Member

    Are you talking about the lighter blue band at the bottom? If so, it's .site-footer.

    This should help you pinpoint what to target in the CSS.

    October 30, 2015 at 6:45 am in reply to: Front Page Altitude Changes #169600
    Pixel Frau
    Member

    1) Change the font, but only in the Front Page 1 Widget 1 text area

    .front-page-1 {
    font-family: enter the font family here;
    }

    2) Change the background color in the copyright footer area.

    .footer-widgets {
    background-color: #colorhexcode;
    }
    October 27, 2015 at 2:04 am in reply to: Need to refine primary menu CSS #169174
    Pixel Frau
    Member

    Ah, I see. You'll want to separate the .nav-primary from .responsive-menu and .genesis-nav-menu. Right now it's changing the color for all of them, which is why you're getting all white. Define the styling for .nav-primary separately so that the colours only apply to that.

    October 26, 2015 at 4:56 am in reply to: Issue with Whitespace Pro #169018
    Pixel Frau
    Member

    Featured post/page widgets strip formatting which is why you're not seeing lists.

    .genesis-nav-menu .sub-menu .menu-item should target subnav items.

    October 25, 2015 at 12:38 pm in reply to: Need to refine primary menu CSS #168985
    Pixel Frau
    Member

    First off, remove the !important from this:

    .nav-primary,
    .responsive-menu,
    .genesis-nav-menu .sub-menu a:hover {
        color: #056905 !important;
    }

    Then change this:

    .responsive-menu,
    .genesis-nav-menu,
    .nav-primary .current-menu-item > a {
        background-color: #056905;
        color: #fff;
        text-decoration: none;
    }

    to this:

    .responsive-menu,
    .genesis-nav-menu,
    .nav-primary .current-menu-item > a {
        background-color: #fff;
        color: #056905;
        text-decoration: none;
    }

    Also, the font and background colours are currently the same (white) on hover. You'll want to change that so people can read the text when hovering on a menu item.

    October 25, 2015 at 12:32 pm in reply to: Links pages and links widget #168984
    Pixel Frau
    Member

    The Link Manager was removed in WordPress 3.5. It has nothing to do with Genesis. More info here: https://codex.wordpress.org/Version_3.5

    October 25, 2015 at 12:29 pm in reply to: No Parent Theme Found…but Genesis Framework is installed #168983
    Pixel Frau
    Member

    Probably best to email support directly so they can make sure there's not an issue. There's not much anyone can tell you on the forums since we can't see anything in the backend of your site.

    One thing to check is to make sure you installed the framework and not the sample theme by mistake.

    October 25, 2015 at 12:25 pm in reply to: Change Home Section Width #168982
    Pixel Frau
    Member

    If you want it to apply to all widget areas on the homepage, adjust the padding for .home-even, .home-odd.

    If you want it to apply only to home-section-2, add styling for .home-section-2.

    You can find the relevant CSS to change with Firebug or other similar browser tools.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 356 total)
1 2 3 … 16 17 18 →

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