• 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

Atila

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 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • July 26, 2016 at 7:45 pm in reply to: Add Logo In Primary Menu #190254
    Atila
    Member

    Actually... xD
    Anyone has idea on how to center menu items? πŸ™‚

    Never mind.
    text-align:center;

    I'm tired, it's 3:45am. Good night people and moderators please delete this thread. πŸ™‚

    July 26, 2016 at 7:37 pm in reply to: Add Logo In Primary Menu #190253
    Atila
    Member

    Oh, ding! In the last moment. I just saw that there is a plugin for this.

    Nav Menu Images


    Sorry if anyone tried to solve it in the meantime! πŸ™

    April 14, 2016 at 5:03 pm in reply to: Footer widget background #183633
    Atila
    Member

    Well, the one way I have worked it out is by using SiteOrigin widget! I will leave this opened just in case someone searches for this topic some day... Cheers!

    April 14, 2016 at 10:17 am in reply to: Make footer background image max width #183608
    Atila
    Member

    Yep, it did the job. Thanks Victor! Closing down the topic.

    April 14, 2016 at 7:52 am in reply to: Make footer background image max width #183594
    Atila
    Member

    Well the light bulb went on and it was image size -.-''
    But still, I am trying to make image responsive, so it adopts any screen. Anybody has any idea on that?

    September 17, 2015 at 1:52 pm in reply to: Can't wrap custom widget under header – Genesis Sample Theme #165925
    Atila
    Member

    Solved it. I have defined max-width to be the same as the max-width of the .wrap, and set margin to auto. πŸ™‚ Thanks for help anyway!

    #mc_embed_signup {
    background-color: #E1E1E1;
    overflow: hidden;
    border: 1px solid;
    padding: 0 5%;
    max-width: 980px;
    margin: auto;
    }
    September 17, 2015 at 1:16 pm in reply to: Can't wrap custom widget under header – Genesis Sample Theme #165923
    Atila
    Member

    Hay Victor... The problem is, when I add .wrap to the #mc_embed_signup, then there is no CSS for that element (not recognized). So .wrap is not wrapping it. Strange. Without .wrap, CSS works fine.

    September 12, 2015 at 2:50 pm in reply to: Genesis Sample Theme and comment-reply-link Modification #165308
    Atila
    Member

    Fixed it. The problem was in language. As I am using Serbian language, for me it says "ΠžΠ΄Π³ΠΎΠ²ΠΎΡ€ΠΈ" instead of Reply. So, for people that are not using English as a WP language, the word "Reply" should be changed to what it says in their language. For example, here is the modified version of your code that works:

    function wpsites_modify_comment_reply($content) {
    	$content = str_replace('ΠžΠ΄Π³ΠΎΠ²ΠΎΡ€ΠΈ', 'Custom Reply to this comment', $content);
    	return $content;
    }
    add_filter('comment_reply_link', 'wpsites_modify_comment_reply');

    Hope it will help non-english WordPressers πŸ™‚

    September 12, 2015 at 2:19 pm in reply to: Genesis Sample Theme and comment-reply-link Modification #165306
    Atila
    Member

    Hay Brad... I have already tried that code (wasn't function wpsites but something else) and for some reason it is not working.

    September 6, 2015 at 1:21 pm in reply to: Change color of blue stripe #164774
    Atila
    Member

    Okay. I did not see anything unusual on your site.

    September 6, 2015 at 12:59 pm in reply to: Genesis Sample Teme – Change Main Menu Width #164766
    Atila
    Member

    Hi Tom.
    I just added this code

    width: 1200px;
    margin: 0 auto;

    to the

    .nav-primary {
    background-color: #333;
    }

    and it worked.

    And just tested your code, works fine. Thanks! πŸ™‚

    September 6, 2015 at 12:45 pm in reply to: Change color of blue stripe #164763
    Atila
    Member

    Source image is located at wp-content/themes/education/images/bg-top.jpg

    Just go to Appearance > Customization and change background image πŸ™‚

    September 6, 2015 at 12:41 pm in reply to: Change color of blue stripe #164761
    Atila
    Member

    U mean that blue background? πŸ™‚

    September 5, 2015 at 2:55 pm in reply to: Genesis Sample – Need help with footer widgets #164692
    Atila
    Member

    @mmjaeger

    The second widget was pulling a little bit to the left side, so I have edited this piece:

    .footer-widgets-1,
    .footer-widgets-2,
    .footer-widgets-3 {
    width: 340px;
    }

    and changed the width to 360px, so now the 2nd widget is centered.
    Let me know if it works for you!

    September 5, 2015 at 2:15 pm in reply to: Genesis Sample – Need help with footer widgets #164686
    Atila
    Member

    @Mmjaeger

    Your code works! Yea, theme comes without css for footer widgets. I have tried putting in the code StudioPress gives but for some reason it did not work.

    Thanks! πŸ™‚

    September 5, 2015 at 1:50 pm in reply to: Genesis Sample – Need help with footer widgets #164683
    Atila
    Member

    Hey Victor! I am using Genesis Sample - The Genesis Framework free child theme. I have 3 separate widget areas, by default. So, then I would need to wrap those 3 widgets in CSS?

    Yep,
    //* Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    is here by default. I think they added it in v2.2.

    September 5, 2015 at 1:44 pm in reply to: Genesis Sample – Need help with footer widgets #164682
    Atila
    Member

    I have also installed Genesis framework + child theme od test site, and the footer is again not looking like it's shown in Genesis demo mode here. I know this is probably not common, but if anybody had expirience with this issue, let me know the solution. πŸ™‚

  • Author
    Posts
Viewing 17 posts - 1 through 17 (of 17 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