• 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

Graham

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 91 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • May 28, 2015 at 11:59 pm in reply to: White Gap Driving Me NUTS!!! Help please! #154053
    Graham
    Member

    The padding on the .section_wrapper is being set using !important

    .section_wrapper {
      padding: 1% 0 !important;
    }

    This means that the following CSS is having no effect, even though it has a higher specificity

    .section_wrapper.is_fullslider {
        padding: 0;
    }
    

    You could add !important to .is_fullslider or reconsider the use of !important in the first place


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 28, 2015 at 9:50 am in reply to: WP Page Saves and Goes to Public Site #153975
    Graham
    Member

    What have you tried so far?

    Have you tried disabling plugins for example?


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 28, 2015 at 9:40 am in reply to: add tagline below header image #153974
    Graham
    Member

    text-indent: -9999px;

    means that it is hidden. It's being displayed 9999px to the left - in other words, off your screen and outside the visible region.

    height: 0 means that it has no height, therefore you wouldn't be able to see it even if it were on your screen


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 26, 2015 at 8:21 pm in reply to: Link to larger image? #153743
    Graham
    Member

    Glad it helped Keith. Are you able to mark as resolved?


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 26, 2015 at 8:11 am in reply to: Link to larger image? #153641
    Graham
    Member

    https://codex.wordpress.org/Inserting_Images_into_Posts_and_Pages

    Step 5. Attachment display settings > Link to Media file


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 26, 2015 at 8:01 am in reply to: Replace primary sidebar one page only #153638
    Graham
    Member

    +1 Genesis Simple Sidebar


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 24, 2015 at 11:10 am in reply to: Remove double Archives/Categories Title? #153323
    Graham
    Member

    Had the same situation on a post in this forum a few hours ago, answered here.

    http://www.studiopress.community/topic/widget-title-displaying-twice/

    WordPress introduced the screen-reader-text css class in 2009, but only recently ( version 4.2 ) had they committed to making the use of this more prominent.

    I hope StudioPress take this on board.

    Ref: https://make.wordpress.org/accessibility/2015/02/09/hiding-text-for-screen-readers-with-wordpress-core/

    Web Accessibility in Mind
    http://webaim.org/techniques/css/invisiblecontent/


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 5:08 pm in reply to: "WordPress SEO" is noindexing my home #153445
    Graham
    Member

    Ok that's great to hear.

    Are you able to mark this post as Resolved?


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 3:59 pm in reply to: Want a Home Page W/O a Blog #153441
    Graham
    Member

    Create a new page, call it Home and leave the template selection as default

    Then tell WordPress that you want to show this page on the front page of your site

    Dashboard > Settings > Reading > Front page displays > static page > then select


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 3:20 pm in reply to: Conditional Action Hook Question #153438
    Graham
    Member

    Glad it helped 🙂

    I can't edit my post, so I've corrected my typo from above here (missing closing bracket ) for future copy pasta.

    if( is_singular('post') && in_category('Blog')) {
        // show blog-submenu
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 2:29 pm in reply to: News Pro DEMO #153436
    Graham
    Member

    Doesn't sound similar to me. You're using Instant WordPress and working locally.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 2:25 pm in reply to: Primary Navigation Bar Does NOT show at all in Mobile View #153435
    Graham
    Member

    Likewise for me on HTC phone - it shows both hamburger menu icons on page load. So am unable to replicate the issue

    However, I have found the responsive menu on the Lifestyle Pro theme a bit touchy sometimes on my old HTC phone, it doesn't always show immediately. Yet soon as I touch the screen, it it appears.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 2:14 pm in reply to: How to Move Post Info Before Entry Title #153434
    Graham
    Member

    Davide, FYI you might want to create your own topic. This one is 2 years old and already marked as Resolved, so you might not get many people looking at it.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 2:04 pm in reply to: Conditional Action Hook Question #153433
    Graham
    Member

    is_category() checks if a category archive page is being displayed.
    To test if a post is in a category use in_category()

    So basically, I want to add the blog-submenu widget to single posts that have the Blog category, but not the Tutorials category. Can anyone help?

    if( is_singular('post') && in_category('Blog') {
        // show blog-submenu
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 1:11 pm in reply to: Conditional Action Hook Question #153430
    Graham
    Member

    I would need to double check your logic, so bear with me, yet for now ..

    is_singular() parameter is either string || array

    is_singular( post )

    should be

    is_singular( 'post' )


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 12:53 pm in reply to: Image around Menu items #153429
    Graham
    Member

    Using CSS background on the menu item is probably the way to go

    e.g. this just makes the background of all the menu items yellow

    .site-header .genesis-nav-menu .menu-item {
        background-color: yellow;
    }

    to give them all a background image

    .site-header .genesis-nav-menu .menu-item {
        background-image: url("path/to/your/image.png");
    }

    If you wanted to style each menu item differently, then you could make use of the advanced menu properties from within your WordPress dashboard.

    Dashboard > Appearance > Menus > Screen options > Show advanced menu properties > Ensure "CSS Classes" is checked

    You would then be able to add a separate CSS class to each menu item, e.g. program-overview. Having done that, you could then target that menu item in the CSS.

    For example

    .site-header .genesis-nav-menu .program-overview {
        background-color: red;
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 2:56 am in reply to: Adding a Magnifying Glass Icon to Search Bar #153384
    Graham
    Member

    Is this resolved?

    I see a magnifying glass ( not hour glass) aligned right - but perhaps still a need to increase height?

    The following padding tidied it up a bit for me

    .genesis-nav-menu > .search input {
        padding: 5px 28px 5px 8px;
    }

    and to push the glass icon down a bit, I increased the top by a couple of pixels

    .genesis-nav-menu .search-form input[type="submit"] {
       top: 6px;
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 23, 2015 at 1:49 am in reply to: Is This A Fair Price? #153381
    Graham
    Member

    This is the Design Tips and Tricks forum, - perhaps better in General DIscussion?

    ... as to whether it's a fair price or not, only you can make that call. Each of us place different values on their own time and skill set and that of others

    $120 dollars to save you potentially losing 3 months work and the time it took you to do that?

    Where I live, that's a decent meal out for 2 with wine and dessert, in other parts of the word it's a different story. Your call

    I can fix my own car, paint my own house, build my own patio, cut down my own trees, build my own computer. I choose not to, but that's me.


    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 22, 2015 at 10:42 pm in reply to: Remove White Space/Row in Enterprise Header #153379
    Graham
    Member

    You would need to edit the CSS

    The classes you might need to consider altering are

    .site-header .wrap {
        padding: 40px 0;
    }
    
    .site-header {
        background-color: #fff;
        min-height: 150px;
    }

    My JustGiving page: https://www.justgiving.com/helping-graham-give

    May 22, 2015 at 10:32 pm in reply to: Author Pro : how remove the cover image in the single post article #153378
    Graham
    Member

    If you mean how to remove the featured ( cover ) image in the single book view (?). Try this

    add_action('genesis_meta','child_maybe_remove_featured_image');
    function child_maybe_remove_featured_image(){
    		if( is_singular('books') ) {
    			add_filter( 'genesis_pre_get_image','return_empty_string' );
    		}
    }
    
    function return_empty_string(){
    	return '';
    }
    

    My JustGiving page: https://www.justgiving.com/helping-graham-give

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 91 total)
← 1 2 3 4 5 →
« 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