• 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

Stewart

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 - 61 through 80 (of 130 total)
← 1 2 3 4 5 6 7 →
  • Author
    Posts
  • July 10, 2013 at 2:34 pm in reply to: Call To Action Color Change – Education Child #50134
    Stewart
    Member

    Hi,

    The CTA is made up of 3 separate images: banner-left.png, banner-right.png and banner-texture.png.

    All the images at in your child theme folder under images: wp-content/themes/education/images/

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 10, 2013 at 8:18 am in reply to: AgentPress – "Property Details" for UK! Please Help #50099
    Stewart
    Member

    Hi,

    What you will need to do is change a few lines of code in your functions.php file.

    Open the functions.php and look for the following on around line 67:

    /**
     * Filter the property details array.
     *
     */
    function agentpress_property_details_filter( $details ) {
    	
    	$details['col1'] = array( 
    	    __( 'Price:', 'apl' ) => '_listing_price', 
    	    __( 'Address:', 'apl' ) => '_listing_address', 
    	    __( 'City:', 'apl' ) => '_listing_city', 
    	    __( 'State:', 'apl' ) => '_listing_state', 
    	    __( 'Zip:', 'apl' ) => '_listing_zip' 
    	);
    	$details['col2'] = array( 
    	    __( 'MLS #:', 'apl' ) => '_listing_mls', 
    	    __( 'Square Feet:', 'apl' ) => '_listing_sqft', 
    	    __( 'Bedrooms:', 'apl' ) => '_listing_bedrooms', 
    	    __( 'Bathrooms:', 'apl' ) => '_listing_bathrooms', 
    	    __( 'Basement:', 'apl' ) => '_listing_basement' 
    	);
    	
    	return $details;
    	
    }
    

    Now you can change it to something like this:

    /**
     * Filter the property details array.
     *
     */
    function agentpress_property_details_filter( $details ) {
    	
    	$details['col1'] = array( 
    	    __( 'Price:', 'apl' ) => '_listing_price', 
    	    __( 'Address:', 'apl' ) => '_listing_address', 
    	    __( 'City:', 'apl' ) => '_listing_city', 
    	    __( 'County:', 'apl' ) => '_listing_state', 
    	    __( 'Postcode:', 'apl' ) => '_listing_zip' 
    	);
    	$details['col2'] = array( 
    	    __( 'Ref Number #:', 'apl' ) => '_listing_mls', 
    	   // __( 'Square Feet:', 'apl' ) => '_listing_sqft', 
    	    __( 'Bedrooms:', 'apl' ) => '_listing_bedrooms', 
    	    __( 'Bathrooms:', 'apl' ) => '_listing_bathrooms' 
    	   // __( 'Basement:', 'apl' ) => '_listing_basement' 
    	);
    	
    	return $details;
    	
    }
    

    To change any of the others just change the wording example:

    __( 'City:', 'apl' )

    to

    __( 'Town:', 'apl' )

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 9, 2013 at 9:24 am in reply to: New HTML5 responsive theme website #49953
    Stewart
    Member

    Very nice job, only thing I can see is your sharebar at the bottom is not displaying right on chrome for me.

    Screenshot: http://i.imgur.com/Pp3h4kv.jpg

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 8, 2013 at 9:00 am in reply to: Changing Header size #49792
    Stewart
    Member

    Hi,

    Open your style.css file and look for the following on line 216:

    .header-image #title-area,
    .header-image #title,
    .header-image #title a {
    	display: block;
    	float: left;
    	height: 90px;
    	overflow: hidden;
    	padding: 0;
    	text-indent: -9999px;
    	width: 480px;
    }
    

    And try changing the height value here.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 8, 2013 at 7:58 am in reply to: Executive Theme Title Area Doesn't Center After Width Change #49785
    Stewart
    Member

    Nice Im glad you got it fixed.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 5:58 pm in reply to: Requesting site visits to see if you can replicate display issue #49720
    Stewart
    Member

    Works Fine for me too, tested a few listings on chrome, firefox, opera and IE10.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 5:47 pm in reply to: How do I implement responsive design on WP blog site #49714
    Stewart
    Member

    Hi,

    I don't believe the lifestyle theme is a responsive theme, it would be possible to make it responsive but would require some custom Css work to be done.

    As to hire someone that is down to your tech knowledge, but here is a basic tutorial i found that show you a very basic way on how to do it to your theme.

    http://www.wpfangirl.com/2011/how-to-mobilize-your-genesis-theme-in-less-than-an-hour/

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 5:09 pm in reply to: Gray rectangle in corner #49708
    Stewart
    Member

    Your welcome Owen, glad it worked for you.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 4:07 pm in reply to: Google font not showing up on one side of HP #49703
    Stewart
    Member

    Your welcome glad it helped.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 3:42 pm in reply to: How to remove post date on Google SERPs #49698
    Stewart
    Member

    Hi,

    I believe that google pulls this information off your post/page themselves.

    Check out this article, its a little old but hopefully will start you in the right direction:

    http://www.dollarshower.com/how-to-remove-date-stamp-from-google-serp-description/

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 3:39 pm in reply to: Google font not showing up on one side of HP #49697
    Stewart
    Member

    Hi,

    It looks like this section on line 1041 of your style.css file is overriding your main h2 font:

    .home-middle-right .featuredpost h2,
    .home-middle-right h2 a,
    .sidebar .featuredpost h2,
    .sidebar .featuredpost h2 a {
    	font-family: 'Droid Sans', sans-serif;
    	font-size: 20px;
    	font-weight: bold;
    	line-height: 30px;
    	margin: 10px 0 0;
    }
    

    Try either change them or removing the .home-middle-right .featuredpost h2, and .home-middle-right h2 a,

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 3:25 pm in reply to: Executive Theme Title Area Doesn't Center After Width Change #49693
    Stewart
    Member

    Yes not sure why its not overriding as a quick fix try :

    #title-area{
    width: 100% !important;
    }

    #header .widget-area{
    width: 100% !important;
    }

    It should then force the 100% width.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 3:22 pm in reply to: Gray rectangle in corner #49692
    Stewart
    Member

    Hi,

    The Grey color is coming from the custom background, what you need to do is go to your dashboard and goto:

    Appearance > Background: and change the background color there.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 2:58 pm in reply to: Executive Theme Title Area Doesn't Center After Width Change #49687
    Stewart
    Member

    Hi,

    It looks like because you set it to 50% it is still using that number when viewing on ipad.

    To fix it open your style.css and scroll down to the bottom to the media queries and add a width value to both:

    #title-area and #header .widget-area of 100% for example.

    Try adding it in this media query: @media only screen and (max-width: 1023px)

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 9:29 am in reply to: Uber Customized News Theme — Community Review Site #49635
    Stewart
    Member

    Hi,

    I would have to agree with Susan the font looks a little small on my laptop too, but the layout looks great. The color compliment each other nicely.

    Only thing I would say is it took about 21secs to load for me, maybe check out some cacheing plugins like W3 Total Cache or WP Super Cache.

    Other than that very nice
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 5:01 am in reply to: OutReach Theme – Mobile Responsive – Menu #49613
    Stewart
    Member

    Hi Robin,

    Just checked on my iPhone 4s and iphone 5, and i can click every link in the products dropdown, I dont have any androids to check there.

    Hope it helps a little
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 4:54 am in reply to: Trying to add some js to genesis #49612
    Stewart
    Member

    Hi Dave,

    You could insert it through the dashboard, but I advise against it for the reason that it will load on every page, thus adding unnecessary javascript for most of your site.

    The way I would suggest loading it is via your functions file using a conditional tag() to only load on the specfic page you want to use your plugin on.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 7, 2013 at 4:41 am in reply to: Comments Form Eleven40 Theme #49611
    Stewart
    Member

    Hi,

    From what I can tell it looks like your email field is there its just in the top left of the page, the reason behind this is because you have an additional stylesheet loading e4m.css, which is overriding the styling of your comment form.

    Specifically the #email id, to resolve it you will either need to delete #email from e4m.css or rename it to something else.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 5, 2013 at 7:46 am in reply to: My header changes size dependent on which page I'm on. #49315
    Stewart
    Member

    Hi,

    It looks like the problem is because on your home page the title is wrapped in a <h1> tag and on the other pages its a <p>, try adding this to your style.css file.


    #title-area p {
    margin: -7px 0 16px 0;
    }

    You might have to play with the figures but looks ok at those on my browser (Chrome)

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 5, 2013 at 6:43 am in reply to: Page and Next on Minimum – How? (Again) #49308
    Stewart
    Member

    Hi,

    You need to goto Genesis > Theme Settings > Content Archives - and change the Post Navigation Technique.

    The Minimum them Demo is set to Numeric.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 130 total)
← 1 2 3 4 5 6 7 →
« Previous Page

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