• 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

aureliendebord

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 - 1 through 20 (of 29 total)
1 2 →
  • Author
    Posts
  • October 10, 2015 at 11:47 am in reply to: Altitude Theme: Center Logo stay centered when adjusting #167804
    aureliendebord
    Member

    Hey Kathy,

    I just saw your site and the logo stay centered even if i reduce the size of my window.


    Agence web Debord, building websites in France.

    September 25, 2015 at 12:05 pm in reply to: Font Color for block text for parallax pro #166668
    aureliendebord
    Member

    Hey Don,

    Try this

    .content-box-left .box-text p {
        font-size: 14px;
        color: #000000!important;
        margin: 0;
    }

    Agence web Debord, building websites in France.

    September 24, 2015 at 11:50 am in reply to: Navigation Hover Colour #166578
    aureliendebord
    Member

    Hello EmLY14,

    To change the color of your text on hover, try this :

    .genesis-nav-menu li a:hover {
        color: black;
    }

    Agence web Debord, building websites in France.

    September 23, 2015 at 12:03 pm in reply to: Parallax Theme — Header issues #166474
    aureliendebord
    Member

    Hey KopanosMedia,

    To center the logo, you can add a simple "margin:auto" :

    .header-image .site-title > a {
        background-size: contain !important;
        display: block;
        height: 120px;
        text-indent: -9999px;
        max-width: 574px;
        margin: auto;
    }

    For you logo, increase the height of your header to get it larger. Proportionalities stories 🙂


    Agence web Debord, building websites in France.

    September 23, 2015 at 11:56 am in reply to: Hidden inputs adding space? #166473
    aureliendebord
    Member

    Hey dgstewartadv,

    Here is a way to remove this spacing.

    Firsteval, assign a class to p
    <p class="hide">

    Next, in you css file, you can just hide this paragraph with a display:none

    p.hide {
    display: none;
    }
    

    Agence web Debord, building websites in France.

    September 17, 2015 at 1:01 pm in reply to: Header Height on Author Pro #165918
    aureliendebord
    Member

    Hey majorkira,

    You should take a look to your functions file. Here is an helpful link :

    Changing Genesis Custom Header Size

    Bye


    Agence web Debord, building websites in France.

    September 3, 2015 at 1:29 pm in reply to: Modern Studio Pro Home page #164500
    aureliendebord
    Member

    Hey RoxG,

    I think the paste in you css editor may work.

    Commenting means to disable a css line, without deleting it. For commenting a line, you have to use slash and star, like this :
    a line
    /* a commented line */


    Agence web Debord, building websites in France.

    September 2, 2015 at 1:25 am in reply to: Modern Studio Pro Home page #164300
    aureliendebord
    Member

    Hello RoxG,

    You can do this with few edits in your css file :

    line 1349 : comment or remove the margin-bottom :

    .welcome-message {
        border-bottom: 1px solid #000;
        padding-bottom: 40px;
    /*  margin-bottom: 80px; */
    }

    line 1683 : set the margin-top to 0 and comment or remove the border

    .footer-widgets {
    /* border-top: 1px solid #000;*/
        clear: both;
        margin: 0 10% 0;
        padding-top: 60px;
    }

    Agence web Debord, building websites in France.

    September 2, 2015 at 12:49 am in reply to: Creating a tab without a page #164298
    aureliendebord
    Member

    Hello Kathiemt,

    Yes it's possible.

    When creating your tab in the menu panel, instead of writing your url, just write "#" (without the quotation marks).


    Agence web Debord, building websites in France.

    August 31, 2015 at 8:54 am in reply to: Google Analytics and PageSpeed Insights #164123
    aureliendebord
    Member

    You can reduce the time for getting the dns of Google.


    Agence web Debord, building websites in France.

    August 28, 2015 at 6:38 am in reply to: Google Analytics and PageSpeed Insights #163870
    aureliendebord
    Member

    Hey Klipklopp,

    Unfortunatly, you can't do anything about this.
    You can't set any expire header for a ressource which is not provided by your website, but by Google.

    You can yet prefetch the dns of this ressource with some cache plugins.


    Agence web Debord, building websites in France.

    August 28, 2015 at 6:33 am in reply to: Altitude Pro – Front page widget 3 – border around widgets #163869
    aureliendebord
    Member

    Hey mkaub,

    To add border to these text widgets, you can add these following lines in your css file :

    .front-page-3 .textwidget {
        border: 1px solid #FFF;
    }

    Agence web Debord, building websites in France.

    July 13, 2015 at 1:35 am in reply to: Material Design w/ Genesis #159242
    aureliendebord
    Member

    Hi Hotstreak,

    Just to let you know, Google has unleashed a lite version of Material Design optimized for websites :
    http://www.getmdl.io/index.html


    Agence web Debord, building websites in France.

    June 29, 2015 at 1:13 am in reply to: Whitespace Pro welcome widget #157800
    aureliendebord
    Member

    Hey Marcia,

    Is it better with this code for the front-page.php ?

    //* Add the new widget
    		add_action( 'genesis_loop', 'new_widget' );
    
    function new_widget() {
    	genesis_widget_area( 'new-widget', array(
    		'before' => '<div class="new-widget widget-area">',
    		'after'  => '</div>',
    	) );	
    }

    I have changed the hook.


    Agence web Debord, building websites in France.

    June 28, 2015 at 1:26 pm in reply to: Show Posts Title and Featured Image in Categoriy Page #157763
    aureliendebord
    Member

    Hi Eric,

    In the theme setting have you try to tick "Include the Featured Image?" in the content archives box ?


    Agence web Debord, building websites in France.

    June 28, 2015 at 1:22 pm in reply to: Comments on One Page #157762
    aureliendebord
    Member

    Hi Annamarie,

    On the pages list in the admin, click on "quick edit" on this page and you will able to enable comment on this single page.

    Hope it helps.


    Agence web Debord, building websites in France.

    June 28, 2015 at 12:43 pm in reply to: Altitude: ul row spacing #157759
    aureliendebord
    Member

    Yes,
    If you want no spaces at all, try :

    .sidebar #text-25 ul li {
      margin-bottom: 0px;
      padding-bottom: 0px;
    }

    Agence web Debord, building websites in France.

    June 28, 2015 at 12:39 pm in reply to: Nav Items in Modern Studio Pro Theme #157758
    aureliendebord
    Member

    This specifies this setting is made for 1100px-wide screen. Responsiveness stuff 🙂


    Agence web Debord, building websites in France.

    June 28, 2015 at 2:29 am in reply to: Removing Nav Bar Spaces #157723
    aureliendebord
    Member

    Hey Djdulin27,

    Try at line 196 of your css file :

    ul {
      display: flex;
    }

    Hope it works 🙂


    Agence web Debord, building websites in France.

    June 28, 2015 at 12:59 am in reply to: Altitude: ul row spacing #157719
    aureliendebord
    Member

    Hi Ken,

    I have seen nowhere this id #25, neither #26. Is this on your homepage ?


    Agence web Debord, building websites in France.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 29 total)
1 2 →

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