• 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

Doug Edgington

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 - 81 through 100 (of 185 total)
← 1 2 3 4 5 6 … 8 9 10 →
  • Author
    Posts
  • March 13, 2016 at 10:04 pm in reply to: Genesis 2.2.7 #181377
    Doug Edgington
    Member

    Try visiting the updates page within your dashboard. This should trigger the update to show up. Once you exit the updates page, the update may show up.
    Or you can try clicking the "check again" button on the updates page.


    Doug Edgington
    http://www.dougedgington.com

    March 13, 2016 at 3:01 am in reply to: Image on same line as site title in header widget area? Beautiful Pro theme #181316
    Doug Edgington
    Member

    Within the header wrap, you have 1140px to work with. But the title-area and widget-area are 1470px combined. This is causing the widget-area ( image on right ) to drop down a line.
    You would need to reduce the width of the title-area or widget-area. Below is an example of reducing the width of the widget-area to put both items on the same line.

    /* 430px widget area leaves 40px space between title-area and widget-area */
    .site-header .widget-area {
         width: 430px; 
    }

    Doug Edgington
    http://www.dougedgington.com

    March 13, 2016 at 2:47 am in reply to: Change H6 font color in Daily Dish Pro #181314
    Doug Edgington
    Member

    No problem. Enjoy the rest of your weekend.


    Doug Edgington
    http://www.dougedgington.com

    March 13, 2016 at 2:04 am in reply to: Change H6 font color in Daily Dish Pro #181305
    Doug Edgington
    Member

    You can single out particular types of h6 headings by using an associated class name. Or you can just create a new h6 style declaration below any existing h6 declarations.

    /* Use the class associated with the heading that you are trying to single out */
    h6.class-name {
         color: #ccc;
         text-transform: none;
    }
    /* h6 style declaration below existing h6 styles - override existing style rules */
    h6 {
         color: #ccc;
         text-transform: none;
    }

    Doug Edgington
    http://www.dougedgington.com

    March 13, 2016 at 1:53 am in reply to: Removing White Space From Agency Pro theme #181303
    Doug Edgington
    Member

    To reduce the white space you can reduce the site-inner padding. Below is what you currently have. The theme's original top and bottom padding was 5%. It looks like it was increased to 7%.

    .site-inner {
         padding: 7% 0;
    }

    In regards to the header image, I assume that you modified the custom header size in your functions file to 93px by 339px. If so, you will now need to modify the styling. It appears that you already increased the .site-header to a min-height of 93px to match the height of the new image. You would also need to increase the .title-area width to match the width of the new image - 339px.


    Doug Edgington
    http://www.dougedgington.com

    March 13, 2016 at 1:23 am in reply to: Posts on Homepage Resetting #181300
    Doug Edgington
    Member

    Yes, the posts per page setting in the theme settings is for the blog template. Settings->Reading->Blog pages show at most should work.

    When you say that it resets to 3, are you referring to the actual "blog pages show at most" setting field going back to 3?


    Doug Edgington
    http://www.dougedgington.com

    March 12, 2016 at 5:19 pm in reply to: Styling content after the front page #181289
    Doug Edgington
    Member

    No problem. Glad it worked.


    Doug Edgington
    http://www.dougedgington.com

    March 12, 2016 at 11:14 am in reply to: Styling content after the front page #181270
    Doug Edgington
    Member

    If you added a new name to your new line of code within the backstretch-set.js. Then you also need to update it in the wp_local_script function in your template.

    //* you would need to update the name of BackStretchImg in the following line of code within your new template
    wp_localize_script( 'digital-backstretch-set', 'BackStretchImg', array( 'src' => str_replace( 'http:', '', $image ) ) );

    If this doesn't work, you may need to create a separate backstretch-set.js all together to keep is separate from the original (i.e. backstretch-set2.js). And only include your new line of code. And reference the new file like the original file is referenced in front-page.php.

    I am only telling you what I think the issue is. I have no way of testing this code, since you have a custom setup your are trying to implement. You will have to experiment until you get it working.


    Doug Edgington
    http://www.dougedgington.com

    March 12, 2016 at 12:10 am in reply to: How do you change the font in the Front Page 1 Widget? #181253
    Doug Edgington
    Member

    That is an h2 tag that is within the front-page-1 sidebar text widget, so you could use an inline style to avoid modifying the stylesheet. Example below of setting the font to arial.

    <h2 style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;">Dominate Your Market with the Rainmaker Platform</h2>

    If you wanted to single out all h2's for front-page-1 in the stylesheet, you could do something like the following:

    .front-page-1 h2 {
         font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    }

    Doug Edgington
    http://www.dougedgington.com

    March 11, 2016 at 3:01 pm in reply to: Finally re-designed my site in Genesis, christinacreativedesign.com #181230
    Doug Edgington
    Member

    Looks great.


    Doug Edgington
    http://www.dougedgington.com

    March 11, 2016 at 1:17 pm in reply to: About Page on Ambiance Pro #181226
    Doug Edgington
    Member

    I have seen this occur when copying and pasting from other sources. You may have carried over additional items from the source.


    Doug Edgington
    http://www.dougedgington.com

    March 11, 2016 at 1:01 pm in reply to: Styling content after the front page #181223
    Doug Edgington
    Member

    I am not a JS coder. But within your backstretch-set.js file you are using BackStretchImg twice. You will likely need to create a custom name for the second one and update wp_localize_script function accordingly within your new template.


    Doug Edgington
    http://www.dougedgington.com

    March 11, 2016 at 12:50 pm in reply to: Styling content after the front page #181221
    Doug Edgington
    Member

    Basically, since you are replicating the functionality from the front page to an inner page, you are going to have to ensure that everything you need is in place. Even if you are referencing the same files, you still need to check those files to make sure no code within the files need edited. For instance, backstretch-set.js contains code that is intended for the front page only.

    Sorry, I wrote this before seeing your last post - it was on a second page. I will look at the info again.


    Doug Edgington
    http://www.dougedgington.com

    March 11, 2016 at 3:19 am in reply to: Styling content after the front page #181191
    Doug Edgington
    Member

    It is still referencing the original backstretch-set.js file, which is what adds the backstretch to front-page-1 on the front page. You need to add the backstretch to your new page template in the website-page-1 div.

    /* Front page version */
    $(".front-page-1").backstretch([BackStretchImg.src]);
    /* What the Website Page 1 version should look like */
    $(".website-page-1").backstretch([BackStretchImg.src]);

    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 1:00 pm in reply to: Altitude Pro Site Header Opacity #181142
    Doug Edgington
    Member

    I remember an issue like this is the past. I think using rgba will fill the color only with out affecting anything else. You could try the following:

    background-color: rgba(255, 255, 255, 0.8);

    255,255,255 represents white. And 0.8 represents the opacity.

    But you are likely going to have to switch out that logo for a transparent png, or you will see the white behind it.


    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 12:50 pm in reply to: sidebar width #181141
    Doug Edgington
    Member

    No problem.


    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 12:31 pm in reply to: sidebar width #181137
    Doug Edgington
    Member

    I am seeing the changes on my end. Try refreshing your browser. The old stylesheet is likely stuck in your browser cache.


    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 12:12 pm in reply to: sidebar width #181135
    Doug Edgington
    Member

    There was a delay, but it is now working. You would want to use the second code example that I provided in order to apply the styling to all Featured Shows widgets. This first example only adds it to this particular widget - neliofp_widget-2.

    Not sure what you mean about affecting the text title for the second widget. That appears to be a text widget, so the new style rule should not be affecting it. Try refreshing your browser to see if it fixes the issue.


    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 11:56 am in reply to: sidebar width #181131
    Doug Edgington
    Member

    When I look at the style.css file, I am not seeing the declaration in there.
    http://ultimatehealthpodcast.com/wp-content/themes/enterprise-pro/style.css


    Doug Edgington
    http://www.dougedgington.com

    March 10, 2016 at 11:35 am in reply to: Styling content after the front page #181124
    Doug Edgington
    Member

    Within the front-page.php file it would be the digital_front_page_enqueue_scripts function on line 37.
    You can reuse most of the js, but the backstretch-set.js would need be to be unique to the new inner page (website-page-1) in order to place it into the correct div.


    Doug Edgington
    http://www.dougedgington.com

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 185 total)
← 1 2 3 4 5 6 … 8 9 10 →
« 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