• 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

Susan Nelson

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 - 21 through 40 (of 229 total)
← 1 2 3 … 10 11 12 →
  • Author
    Posts
  • January 13, 2014 at 8:44 am in reply to: Beautiful Pro — Adjusting Title Logo Size and Header Menu #84958
    Susan Nelson
    Participant

    Hi there,

    Are you using the custom header feature? If so, you'll need to fix it in a couple places.

    In functions.php, look around line 28 for this section and change the height and width:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'default-text-color' => '000000',
    'header-selector' => '.site-title a',
    'header-text' => false,
    'height' => 120,
    'width' => 320,
    ) );

    In style.css, look around line 925 for this section and change the width:

    .title-area {
    float: left;
    padding-top: 10px;
    padding-top: 1rem;
    width: 320px;
    }

    And then line 965 and change the height:

    .header-image .site-title a {
    float: left;
    min-height: 120px;
    width: 100%;
    }

    That should do it but if not, let me know and I'll take another look.

    By the way, I love the font you used in that logo. May I ask what it is? 🙂

    January 9, 2014 at 2:13 am in reply to: Remove Responsive Design – Genesis theme #84137
    Susan Nelson
    Participant

    You may also need to remove this from your functions.php file:

    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );

    January 9, 2014 at 2:10 am in reply to: Admin color schemes unavailable in 3.8 #84136
    Susan Nelson
    Participant

    I think I saw something about this mentioned on Twitter yesterday and the culprit was a plugin. Maybe try deactivating all your plugins to see if the issue goes away. If it does, reactivate them one by one to find out which one is causing the problem.

    January 7, 2014 at 11:47 am in reply to: How to control spammy comments? #83845
    Susan Nelson
    Participant

    No problem! I'm not sure if it will work for forums. I would test, but I recently removed my forums. Sorry about that!

    January 7, 2014 at 11:38 am in reply to: How to control spammy comments? #83842
    Susan Nelson
    Participant

    I've been getting inundated with spam comments on one of my sites even though I have Akismet running. I installed the Invisible Captcha plugin and it put an immediate stop to it. http://wordpress.org/plugins/invisible-captcha/

    December 31, 2013 at 10:14 pm in reply to: Executive Pro – Primary Navigation Alignment #82432
    Susan Nelson
    Participant

    You could use the code that Sridhar posted and then in the responsive section of your CSS, you can reverse the effect with this:

    .nav-primary {
    float: none;
    }

    Doing so should allow them to go to the center on smaller screens as expected.

    November 27, 2013 at 5:38 pm in reply to: Responsive Slider Border? #75975
    Susan Nelson
    Participant

    Try #genesis-responsive-slider img (no dash before img).

    November 27, 2013 at 7:02 am in reply to: Help with Metro Responsive style #75850
    Susan Nelson
    Participant

    Woohoo! 🙂 You're welcome!

    November 27, 2013 at 5:41 am in reply to: Help with Metro Responsive style #75840
    Susan Nelson
    Participant

    When I add !important to it, it works. That means there's something overriding the new code. Is it still in your custom CSS (Genesis Extender)? If so, try removing it from there to see if it works.

    November 27, 2013 at 5:13 am in reply to: Help with Metro Responsive style #75838
    Susan Nelson
    Participant

    I've never used the Genesis Extender plugin, so I'm not very sure what to suggest. However, when I view your CSS, I don't see the new code in the actual media query section. Just to test, can you go ahead and add it to the actual style.css file and see if it works?

    November 27, 2013 at 4:46 am in reply to: Help with Metro Responsive style #75836
    Susan Nelson
    Participant

    You're welcome! 🙂

    November 27, 2013 at 4:41 am in reply to: template width #75835
    Susan Nelson
    Participant

    I just answered your post here: http://www.studiopress.community/topic/template-width-2/ . Is this about the same site?

    November 27, 2013 at 4:40 am in reply to: template width #75834
    Susan Nelson
    Participant

    Hi there,

    You'll have to go through your style.css and adjust all the places that have the width set to 960px. For example, you'll need to change the primary and secondary nav, the header, site-inner, footer widgets and the footer. After that, you will need to adjust the content areas so they will expand to fit in the new widths.

    Let me know if you need help with it.

    November 27, 2013 at 4:32 am in reply to: Responsive Slider Border? #75832
    Susan Nelson
    Participant

    Hi Mike,

    What if you apply the border radius to the img instead of #genesis-responsive-slider (so, #genesis-responsive-slider img)? It works for me in firebug, so I'm thinking it should work. Let me know?

    November 27, 2013 at 4:24 am in reply to: Help with Metro Responsive style #75831
    Susan Nelson
    Participant

    Hi Yael,

    In the media query section at the bottom of your style.css, look for this:


    @media
    only screen and (max-width: 1139px) {

    .footer-widgets,
    .site-container,
    .wrap {
    max-width: 960px;
    }

    .content-sidebar-sidebar .content-sidebar-wrap,
    .sidebar-content-sidebar .content-sidebar-wrap,
    .sidebar-sidebar-content .content-sidebar-wrap {
    width: 688px;
    }

    .content {
    width: 580px;
    }

    .site-header .widget-area {
    width: 544px;
    }

    You can add text-align: center; to the .site-header .widget-area part. You may also need to add padding: 0; since you've got 10px of padding on the full size view.

    Please let me know if you need help with it. 🙂

    November 26, 2013 at 2:44 pm in reply to: Navigation bar drop down re-sizeing #75747
    Susan Nelson
    Participant

    Do you mean you'd like to change the font size? Can you please post a link to your site?

    November 26, 2013 at 2:41 pm in reply to: Is Studiopress a good fit for my site? #75746
    Susan Nelson
    Participant

    Hi Nate,

    I absolutely think a Genesis theme + Woocommerce would work well for you. I will say, however, that Woocommerce can get expensive depending upon how many extensions you need to use. Definitely research all of those and figure in the cost.

    If you can handle basic CSS edits, you should be able to customize the backgrounds, colors, fonts, etc. But if you need to move things around or create completely new page layouts, you need to know how to work with PHP. But as you mentioned, the community here is great and you can always post your questions here. 🙂

    ~Susan

    November 25, 2013 at 1:02 pm in reply to: paragraph and custom class padding #75547
    Susan Nelson
    Participant

    I'm glad you got it working! 🙂

    November 25, 2013 at 4:45 am in reply to: paragraph and custom class padding #75485
    Susan Nelson
    Participant

    Hi Tracy,

    I think when you switch back and forth between the Visual and Text editors, code can get stripped out or changed like what you're seeing happen. Since you're already adding custom classes to your boxes, you could just go ahead and type the code for the columns, too.

    Something like this:

    <div class="one-third first box">
    Your info here.
    </div>

    <div class="one-third box">
    Your info here.
    </div>

    <div class="one-third box">
    Your info here.
    </div>

    Let me know if you need help with it and I'll be happy to explain further. 🙂

    November 24, 2013 at 12:15 pm in reply to: Visual Archive for Category not obeying CSS rules #75382
    Susan Nelson
    Participant

    This has already been fixed.

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 229 total)
← 1 2 3 … 10 11 12 →
« Previous Page

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