• 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

darrenbrettking

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 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • July 4, 2016 at 12:21 pm in reply to: How to add 1px line on Workstation Pro #188865
    darrenbrettking
    Member

    Depending on where exactly you want to have the line appear, you could do something like this:

    .site-header {
    background-color: #fff;
    border-bottom: 1px solid #ff4800;
    }

    June 15, 2016 at 1:22 pm in reply to: Spacing between border and content #187602
    darrenbrettking
    Member

    On line 456 of your style sheet, you could just add some left-padding, like this:

    th, td {
    text-align: left;
    border: 1px solid #ddd;
    padding: 6px 0;
    padding-left: 10px;
    }

    June 15, 2016 at 1:10 pm in reply to: Header Spacing Mobile – Min-height #187601
    darrenbrettking
    Member

    You could try accessing the relevant style in your media queries and adding some negative margin-bottom. Generally, if you're making changes to the main style, you often need to make an edit in the media queries as well, since one is dependent on the other.

    June 12, 2016 at 12:28 am in reply to: Decrease Space Before Top Widget Appears – AgencyPress #187412
    darrenbrettking
    Member

    It is possible, for sure. If you can include a link to your site we can help point you in the right direction in terms of the css you'd want to change to accomplish this.

    June 12, 2016 at 12:27 am in reply to: HEADER IMAGE #187411
    darrenbrettking
    Member

    Hi there. Right now that link is not pulling up the AspirePro theme.

    June 9, 2016 at 9:56 am in reply to: Adjusting Post Title Size In SideBar Widgets #187226
    darrenbrettking
    Member

    Without seeing the plugin and how it's configured, it's difficult for me to know. But you could try adding that "rpwwt-post-title" class to your stylesheet, and add a font size there, and see if that makes a difference on the front end. Even better would be if the settings page of the plugin (if there is one), lets you change the title siz, but that may not be the case - it depends on the plugin and how much customizability it offers in its settings.

    June 8, 2016 at 2:39 pm in reply to: Customize Category / Archive Page #187191
    darrenbrettking
    Member

    Yes, you could do that by the use of a conditional statement and a snippet of code to modify the length of the post excerpts. The last snippet on this page is for adjusting the excerpt length. You just need to wrap this in a conditional statement so it targets only the category you want this apply to: https://my.studiopress.com/snippets/post-excerpts/

    June 8, 2016 at 2:31 pm in reply to: Site Header Space Creating Margin Around Image #187190
    darrenbrettking
    Member

    Hi there. Just so you know, right now all we can see is a MojoMarketplace splash page when we click on your site link.

    June 8, 2016 at 12:36 am in reply to: CSS for Education Pro theme #187154
    darrenbrettking
    Member

    When you make a change in your main styling, you will sometimes also need to make an edit in the responsive aspects of the styling as well. What you'll want to do is scroll down till you get to the media queries section of the style sheet. It's here that styling as it pertains to smaller screens is handled. You'll want to include the class you adjusted here as well, and style appropriately for the smaller screen size.

    June 8, 2016 at 12:30 am in reply to: Adjusting Post Title Size In SideBar Widgets #187152
    darrenbrettking
    Member

    I looked at your sidebar links, and by "inspecting element" in Chrome, I can see that this span class is being applied: "rpwwt-post-title". This is likely controlled by the plugin itself. To change the size of the title text you can either look to change this style class "rpwwt-post-title" in the plugin's css file. Or, you can try and style for this by including this class in your theme's style sheet, and adding your own font size to override the original.

    By the way, there's always a way to style for specific instances - it's just about being really specific in the classes you're targeting. That's why right-clicking and using "inspect element" over a certain element is really helpful - as it will show you which styles are being applied. From there it's usually fairly straight forward to determine which ones you need to adjust to make a desired change in styling.

    June 8, 2016 at 12:21 am in reply to: Adjusting Featured Images in No Sidebar theme #187150
    darrenbrettking
    Member

    Yes, the various image dimensions are pre-set, because that ensures that everything stays aligned. While you can change those set image sizes, unless you're a developer and want to get into the code, you're better off probably leaving them as is. The better option is to familiarize yourself with the various image dimensions, and then crop and resize your original images to fit those dimensions before uploading them.

    June 3, 2016 at 12:09 pm in reply to: 7 column footer #186884
    darrenbrettking
    Member

    Hi there,

    Having 6 to 8 footer widgets is probably an unusual request, as that's a lot of content to fit within a limited space. To do it you would need to make an adjustment to your functions.php file, and then making adjustments in your style.css file to style it all. As a suggestion, you may be better off stacking two rows of 4 widgets, rather than trying to fit 7 or 8 in one line. Here is a link to the page that described how to customize the footer widgets:
    http://my.studiopress.com/tutorials/add-footer-widgets/

    Regards,
    Darren

    June 3, 2016 at 11:53 am in reply to: Help! Eleven40 black header now blocks the top part of my site… #186882
    darrenbrettking
    Member

    Hi John,

    Without knowing what changes were made to make this happen, one quick way you can rectify this is to add some additional padding. On line 474 of your style sheet you'll see this "site-inner" class:

    .site-inner {
    clear: both;
    margin: 65px 0 40px;
    }

    Just add additional top padding, to something like:

    .site-inner {
    clear: both;
    margin: 155px 0 40px;
    }

    Ideally, you'll find out what change was made that caused the issue to begin with. But this will give you a solution as well.

    June 2, 2016 at 1:20 pm in reply to: How could I add an option to subscribe to my list? #186796
    darrenbrettking
    Member

    Yes, there are definitely easy to use, easy to customize WP plugins for this kind of thing. Here's a link:
    https://wordpress.org/plugins/newsletter-sign-up/

    June 2, 2016 at 1:16 pm in reply to: Can I Change the Font Used?? #186794
    darrenbrettking
    Member

    You can change the fonts used, yes, It's done via a combination of additions/editions to your functions.php file, as well as your style sheet - style.css. Here is a link to an article that describes how to do this with Google fonts: https://www.studiopress.com/google-web-fonts/

    June 1, 2016 at 3:31 pm in reply to: Agency Pro: Mobile resizing issues with Home Middle & Bottom Widgets #186712
    darrenbrettking
    Member

    Hi there,

    Yes, you're correct that what you're likely running into is that the changes you've made in the css only affect the desktop rendering; the mobile rendering is a different matter. Generally, when making these kinds of edits, you're better off just following the pre-existing Genesis classes for different columns as is described here: http://my.studiopress.com/docs/content-column-classes/

    By doing it this way, you're guaranteed that the mobile rendering will appropriately be adjusted as well, and that cross-browser testing and the like have already been dealt with.

    -Darren

  • Author
    Posts
Viewing 16 posts - 1 through 16 (of 16 total)

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