• 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

brock

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 - 101 through 120 (of 166 total)
← 1 2 3 … 5 6 7 8 9 →
  • Author
    Posts
  • June 1, 2015 at 8:54 am in reply to: Altitude Pro Footer Widget Padding #154381
    brock
    Member

    The padding is being set here on line 1649.

    .footer-widgets .wrap {
      padding-bottom: 100px;
      padding-top: 100px;
    }

    Just change them from 100px to a lesser value.

    May 27, 2015 at 3:47 pm in reply to: Different header for responsive devices #153867
    brock
    Member

    See if this tutorial does not solve your problem?

    http://thepixelista.com/responsive-genesis-child-theme-logo/

    May 27, 2015 at 1:59 pm in reply to: Blog Posts Page and Page Layouts #153858
    brock
    Member

    I just checked in my localhost version of Centric Pro on WordPress 4.2.2. I created a blog page, gave it the blog template and set it at full width. No problem. Am I not understanding your question? Have you checked in your functions.php to make sure you aren't forcing a certain layout on every page?

    May 22, 2015 at 9:25 am in reply to: Center Featured Post Image On Home Page #153268
    brock
    Member

    Try this adding this code to your functions.php file.

    May 21, 2015 at 6:36 am in reply to: Centering (and left-aligning) text #153083
    brock
    Member

    It appears you have done it.

    May 19, 2015 at 3:14 am in reply to: Help with footer css #152720
    brock
    Member

    Yup, I think that will solve you issue. 🙂

    May 19, 2015 at 2:36 am in reply to: Altitude Pro – Change ONE Text Widget Background Colour #152709
    brock
    Member

    Try this out:

    .front-page-2 .flexible-widgets {
      background: #ffa500;
    }
    May 19, 2015 at 2:29 am in reply to: Help with footer css #152707
    brock
    Member

    The .site-footer is being overriden by this selector:

    body.gppro-custom .site-footer {
      background-color: #aac874;
      border-top: 4px solid orange;
    }

    Notice I added the border-top propery. It works. I've never used design palette pro and have no idea how it works. But you can probably just add this to your CSS for an easy fix.

    May 18, 2015 at 11:32 pm in reply to: Need Help Creating H1-H6 Color Scheme in Executive Pro Theme #152676
    brock
    Member

    You can change the color by using the color property, for example:

    h1 {
     color: #fff; 
    }

    The color property takes hex values and even keywords lie red. Keep in mind that sometimes headings will be over ridden by another selector such as .site-title a. So, if you find that the color is still not changing you will want to look at a more specific selector that might be giving it a color style. Hope this helps.

    May 18, 2015 at 10:52 pm in reply to: Can I add Content at the end of each blog post automatically? #152664
    brock
    Member

    Also Daily Dish Pro has an after-entry widget area that does this. It would be pretty easy to hook something right after the content but you would need to go into functions.php. I'm not familiar with the special recent posts plugin but the above advice might be worth trying to get it under control.

    May 18, 2015 at 10:33 pm in reply to: Centric Pro divider in Primary Nav – How? #152661
    brock
    Member

    Try adding this into your style.css file:

    .genesis-nav-menu li a {
      border-right: 1px solid #fff;
    }

    The .genesis-nav-menu li a selector is already in your stylesheet so you will just look for it on line 1353 and add the border-right property to it. It will already have a few other property-values, just add this to it.

    Then to complete the job you could add this underneath that first rule in your CSS:

    .genesis-nav-menu li:first-child a {
      border-left: 1px solid #fff;
    }
    May 18, 2015 at 10:12 pm in reply to: Background Image in Parallax Pro ex Home Page #152657
    brock
    Member

    Try adding this to your style.css file:

    .site-container {
              background-image: url('images/myimage.jpg');
    }

    The above example uses a relative path inside your theme folder to a folder named images and then to an image named myimage.jpg. You will replace these with the names of your own files. Alternatively, you could us an image URL and just place it inside the parenthesis where the relative path would have been.

    May 18, 2015 at 9:41 pm in reply to: Top Genesis Learning Resources? #152651
    brock
    Member

    Here's another link to add to your list:

    http://designsbynickthegeek.com/

    May 18, 2015 at 12:16 am in reply to: What is my blog's RSS Feed URL? #152534
    brock
    Member

    Does this help? I typed your site into feedburner.

    feedburner

    May 17, 2015 at 8:16 pm in reply to: Which theme is Easiest Transition for this site redesign? #152521
    brock
    Member

    Have a look at Outreach Pro, as well. That one seems similar to the layout you have now.

    May 17, 2015 at 6:58 pm in reply to: header getting cut off in resizing #152514
    brock
    Member

    You will want to re-setup your logo according to this article. Don't hesitate to ask if you have any trouble.

    May 17, 2015 at 5:41 pm in reply to: Minimum Pro Portfolio Page #152509
    brock
    Member

    Have you tried using the custom fields in the Portfolio post type? They are toward the bottom. Once you add the fields you want you need to hook them somewhere in the loop. You can do that by adding this to your functions.php file:

    add_action( 'genesis_entry_header', 'bc_add_custom_field' );
    function bc_add_custom_field() {
    	the_meta();
    }

    Then you will probably want to add some CSS styling to it. Here's what I did:

    /* Custom Post meta
    ********************************************/
    .post-meta {
    	margin-bottom: 15px;
    }
    
    .post-meta li {
    	list-style: none;
    	display: inline;
    	margin: auto;
    }
    
    .post-meta-key {
    	font-weight: bold;
    }

    Of course you can style it however you see fit. Hopefully I haven't misunderstood your question here.

    May 17, 2015 at 3:29 pm in reply to: Modern Theme Site Border #152502
    brock
    Member

    You will want to remove the box-shadow.

    .site-container {
      /* box-shadow: 0 0 5px #ddd; */
      margin: 40px auto;
      max-width: 1200px;
      padding: 20px 60px 100px;
    }
    May 16, 2015 at 9:07 pm in reply to: Responsive Slider — MOBILE #152459
    brock
    Member

    Thanks, please keep us posted.

    May 16, 2015 at 9:02 pm in reply to: Removing extra space in post footer area #152458
    brock
    Member

    You can remove this bottom margin on the entry class.

    .entry {
       /* margin-bottom: 100px;*/
    }
  • Author
    Posts
Viewing 20 posts - 101 through 120 (of 166 total)
← 1 2 3 … 5 6 7 8 9 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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