• 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

chrismcintosh

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 22 total)
1 2 →
  • Author
    Posts
  • June 3, 2016 at 10:52 pm in reply to: Help with Workstation Pro Navigation Menu #186925
    chrismcintosh
    Member

    Try writing your css in a new media query. Something like

    
    @media only screen and (min-width: 880px) {
    YOUR CSS GOES HERE
    }
    

    Substitute your code for mine. This will make sure that your changes only take effect at the larger screen size where the mobile menu hides away.

    June 3, 2016 at 10:45 pm in reply to: How to make whole home page link able ? #186924
    chrismcintosh
    Member

    Something like the following would probably work.

    Add it to your functions.php or more specifically your front page.

    You are essentially using one of the earliest on page hooks and the latest to encapsulate the rest of the content.

    
    <?php
    
    add_action('genesis_before', 'cm_open_anchor');
    function cm_open_anchor() {
    echo '<a href="#">';
    }
    
    add_action('genesis_after', 'cm_close_anchor');
    function cm_close_anchor() {
    echo '</a>';
    }
    
    May 5, 2015 at 8:45 am in reply to: Clickable "As seen on" links #150221
    chrismcintosh
    Member

    In the jetpack widget there should be a field near the bottom that says Link URL (when the image is clicked) put the site you would like that image to go to in that field.

    February 11, 2015 at 10:44 pm in reply to: Header Gap On Mobile Device-Fun Theme #140567
    chrismcintosh
    Member

    Anna try the following code. Add it to the end of your style.css file. Currently your height is set to 240

    @media (max-width: 600px) {
    .header-image .site-title > a {height: auto;}
    }

    This should make the height adjust when the browser gets below 600px

    February 11, 2015 at 10:31 pm in reply to: Beautiful Pro Theme and recent post widget #140565
    chrismcintosh
    Member

    Kathleen,

    Try adding

    section#recent-posts-5.widget.widget_recent_entries {text-align:center;}

    to the end of style.css

    February 5, 2015 at 10:06 pm in reply to: Metro Pro Primary Sidebar Removal? #139905
    chrismcintosh
    Member

    Hank could you try adding the following to your functions.php file?

    function front_page_sidebar_remove() {
     	if ( is_front_page('') )
     		//* Unregister primary sidebar
    		unregister_sidebar( 'sidebar' );
    	}
    
    add_action( 'genesis_before', 'front_page_sidebar_remove' );
    January 10, 2015 at 10:23 am in reply to: Changing the width of the content in Parallax Pro #136888
    chrismcintosh
    Member

    You might be able to fix that by attaching

    .parallax-landing

    before

    .full-width-content .content

    and entering the code you want specifically for the landing page
    so if the original code I gave you undid something you can redo it just for that page.

    .parallax-landing .full-width-content .content {padding: 0 200px 50px;}

    January 7, 2015 at 6:31 pm in reply to: Slider not visible in Centric Pro on smartphone #136321
    chrismcintosh
    Member

    Something doesnt seem to be quite right.

    But here is a quick and dirty fix.

    In your media query for mobile I would add the following.

    @media only screen and (max-width: 800px) {
    #soliloquy-container-329 {padding-top: 128px;}
    }

    Please let me know if that helped.

    January 6, 2015 at 2:40 pm in reply to: Footer widgets overlapping background images #136206
    chrismcintosh
    Member

    This will probably get you closer.

    
    .footer-widgets {background-color: transparent;}
    .footer-widgets .wrap {background-color: #333;}
    
    December 30, 2014 at 3:38 pm in reply to: Changing the width of the content in Parallax Pro #135698
    chrismcintosh
    Member

    Hoping I'm understanding your question.

    The default padding on .content in parallax pro is 200px maybe try reducing it by 100px on each side using the code below?

    .full-width-content .content {
    padding: 0 100px 50px;
    }

    October 17, 2014 at 6:01 pm in reply to: mobile slider #128209
    chrismcintosh
    Member

    Jim, I'm on vacation right now but if you drop me an email (chris at sbydigital dot com) I might be able to assist you on Monday.

    September 16, 2014 at 9:25 am in reply to: Lifestyle Pro – how to change copyright with link #124661
    chrismcintosh
    Member

    If you add the following to your functions.php file you can modify it for your needs

    //* Change the footer text
    add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
    function sp_footer_creds_filter( $creds ) {
    	$creds = '<a href="http://affiliateLink">Affiliate Link</a> &middot; Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a> & WordPress';
    	return $creds;
    }

    All you have to do is edit whats in the $creds variable.

    September 12, 2014 at 1:51 pm in reply to: mobile slider #124152
    chrismcintosh
    Member

    Jess you will want to set a media query for the smaller screen size resolutions.
    at the end of style.css you will want to add something like -

    @media only screen and (max-width: 768px) {
    .soliloquy-prev, .soliloquy-next { 
         top: 80%;
         }
    }

    It shouldn't be reacting like it is. You probably have a stylesheet conflict. You will have to add other media queries to ensure it will look right at smaller screen sizes.

    September 12, 2014 at 1:26 pm in reply to: Changing Fonts of Navigation #124147
    chrismcintosh
    Member

    You will find
    function parallax_enqueue_scripts_styles()
    inside functions.php

    September 12, 2014 at 1:25 pm in reply to: Changing Fonts of Navigation #124145
    chrismcintosh
    Member

    Yep Look for

    function parallax_enqueue_scripts_styles()

    Inside you should find

    wp_enqueue_style( 'parallax-google-fonts', '//fonts.googleapis.com/css?family=Montserrat|Sorts+Mill+Goudy', array(), CHILD_THEME_VERSION );

    You will want to go to google.com/fonts and find a font you like and click add to collection.
    For this I picked ubuntu mono, then click use.
    Scroll down to add this code to your website.

    In this case we want to keep your other fonts in tact for the rest of your site, so we will just add this font to the ones you are already using so you will replace the enqueue style with the following.

    wp_enqueue_style( 'parallax-google-fonts', '//fonts.googleapis.com/css?family=Montserrat|Sorts+Mill+Goudy|Ubuntu+Mono', array(), CHILD_THEME_VERSION );

    Then in style.css change
    .genesis-nav-menu a {font-family: Montserrat, sans-serif;}

    To
    .genesis-nav-menu a {font-family: Ubuntu Mono;}

    September 3, 2014 at 2:36 pm in reply to: Fixed header in News Pro #122656
    chrismcintosh
    Member

    Yeah absolutely! Please let me know if this helps.

    September 3, 2014 at 2:20 pm in reply to: Fixed header in News Pro #122652
    chrismcintosh
    Member

    Sorry for some reason it did not include the link.

    Using Waypoints Sticky Elements to fix elements to top of page upon scrolling in WordPress

    September 3, 2014 at 2:20 pm in reply to: Fixed header in News Pro #122651
    chrismcintosh
    Member

    You could probably use the following tutorial by Sridhar with minor tweaks.

    September 3, 2014 at 1:03 pm in reply to: Changing Wrapper Size In Prose #122633
    chrismcintosh
    Member

    Seems like prose does things a bit different. You can do that modification on this theme by going to the body class and changing width from 970px to 95%.

    September 1, 2014 at 4:07 pm in reply to: Min width issue: #122281
    chrismcintosh
    Member

    At first look maybe a max-height declaration on that .txt-widget class. Might be able to take a closer look tomorrow.

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

© 2025 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