• 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

wpsmith

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 91 total)
1 2 3 4 5 →
  • Author
    Posts
  • May 18, 2020 at 10:17 am in reply to: Developer needed #498767
    wpsmith
    Member
    This reply has been marked as private.
    June 5, 2018 at 7:03 am in reply to: Developer needed for a customization #220578
    wpsmith
    Member
    This reply has been marked as private.
    August 21, 2013 at 9:18 pm in reply to: Problem with Bee Crafty in some browsers #58116
    wpsmith
    Member

    Your CSS is a bit buggy.

    You currently have.

    
    .homepage-gallery .polaroid-bg {
    	background:url(images/polaroid-frame.png) no-repeat top left;
    	width:236px;
    	height:215px;
    	float:left;
    	display:inline;
    	margin:0;
    	padding: 40px 29px 38px 43px;
    }
    
    .boxgrid {
    	background:#FFEB9D url(images/polaroid-back.png) no-repeat top left;
    	float:left;
    	width: 223px;
    	height: 223px;
    	text-shadow: 1px 1px 1px #000000;
    	margin: 0;
    	overflow: hidden;
    	position: relative;
    }
    

    Your image is 225px, so your .boxgrid styling is proper. However your .polaroid-bg is not styled properly. Your margins are wonky as a result of the width being off (as well as your height but not presenting an issue at the moment). So, here's the fix for that:

    
    .homepage-gallery .polaroid-bg {
    	background: url("images/polaroid-frame.png") no-repeat top left;
    	width: 225px;
    	height: 225px;
    	float: left;
    	display: inline;
    	margin: 0 1px; // see comment below
    	padding: 39px 41px; // I would adjust the background image to fit 40px nicely
    }
    
    .boxgrid {
    	background: #FFEB9D url("images/polaroid-back.png") no-repeat top left;
    	border: 1px solid #000;
    	float: left;
    	width: 225px;
    	height: 225px;
    	/*text-shadow: 1px 1px 1px #000000; // not sure what this is trying to accomplish?? */
    	margin: 0;
    	overflow: hidden;
    	position: relative;
    }
    

    Now to fix the IE issue, you need to just expand the .homepage-gallery width to 940px.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    March 27, 2013 at 8:46 pm in reply to: New image sizes not showing up in Genesis Featured Widget #31653
    wpsmith
    Member

    In lib/structure/custom.php, prose_do_custom_php() only requires the file if ! is_admin()


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 24, 2013 at 9:19 pm in reply to: modifying the HTML source of loops #22634
    wpsmith
    Member

    Hello Jonathan,

    The question is quite vague as to your needs. However, this should help you get you on your way:


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 14, 2013 at 1:10 pm in reply to: Need Help with slider for Mocha theme #20357
    wpsmith
    Member

    Hi,

    You need to use .genesis_responsive_slider.

    Keep at it!


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 14, 2013 at 12:36 pm in reply to: Need Help with slider for Mocha theme #20343
    wpsmith
    Member

    Use #home-slider or .home-widget. All my widets on my home page (not in sidebar) get .home-widget in case I want to style them a specific way. Then I use the ID to select a particular widget.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:45 pm in reply to: Need Help with slider for Mocha theme #20228
    wpsmith
    Member

    Add the slider to the Home Slider widget in http://domain.com/wp-admin/widgets.php not Header Right.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:43 pm in reply to: Freelance theme #20226
    wpsmith
    Member

    It appears that you've already done it. It's done via CSS if not with a custom header.

    .header-image #header #title-area {
    background: url(images/logo.png) left top no-repeat;
    }
    

    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:41 pm in reply to: Two images on category pages. #20225
    wpsmith
    Member

    Did you already solve this issue?


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:40 pm in reply to: Trouble with Images on my blog posts (Need Help Please!) #20224
    wpsmith
    Member

    Hello,

    Can you please post your functions.php file, especially anything that looks like this:

    /** Add new image sizes */
    add_image_size( 'home-featured', 255, 80, TRUE );
    add_image_size( 'post-image', 642, 250, TRUE );
    

    See also WordPress codex on add_image_size().

    Then in Genesis > Theme Settings what is your image size selection?

    Finally, did you install theme AFTER you already uploaded images, etc? If so, you need to regenerate thumbnails.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:29 pm in reply to: Place icons under Logo #20222
    wpsmith
    Member

    While I am not sure how it will turn out, you can try something like this:

    add_action( 'genesis_site_description', 'child_social_icons' );
    /**
    * Output social icons (in header)
    */
    function child_social_icons() {
    //output icons here...
    }


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:15 pm in reply to: Is there a Compatibility Issue with WordPress 3.5.1? #20221
    wpsmith
    Member

    Hello,

    If I am not mistaken, you are using Lifestyle 1, which does have deprecated code within it that would be problematic and may be the source of your issues.

    Could you please post your functions.php code?

    Thanks,

    Travis


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 11:10 pm in reply to: How to exclude Breadcrumbs from certain categories #20220
    wpsmith
    Member

    This should do it for you.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 13, 2013 at 10:51 pm in reply to: Need Help with slider for Mocha theme #20218
    wpsmith
    Member

    First, you need to register the sidebar for the backend. Just add the sidebar registration to the functions.php file

    And then, you add it to your home.php file.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    February 4, 2013 at 10:47 am in reply to: Reporting a bug in Genesis 1.9.1 #17906
    wpsmith
    Member

    This was fixed in trunk on 1.17.2013 by Mark Jaquith in his audit. Release fix TBD.

    Personally, I believe this to be a WordPress issue since map_meta_cap() does not check or sanitize $args[0]. So I've submitted a ticket to WordPress core as a result.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    January 16, 2013 at 8:54 pm in reply to: Adding child style sheet *after* main style sheet #12544
    wpsmith
    Member

    Bill's right, but you probably want to add a priority to guarantee it comes after.


    add_action( 'wp_enqueue_scripts', 'child_load_styles', 99 );
    function child_load_styles() {
    wp_enqueue_style('child_style_css', CHILD_URL . 'child_styles.css');
    }


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    January 15, 2013 at 8:05 am in reply to: Genesis Featured Images – New Bug #12035
    wpsmith
    Member

    I will have a look at this today...


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    January 14, 2013 at 11:50 pm in reply to: Simple Sidebars and Custom Post Types Archives Plugins Conflict? #12009
    wpsmith
    Member

    I will look into this issue this week.


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

    January 14, 2013 at 11:50 pm in reply to: Genesis Simple Sidebars creating Fatal Error #12008
    wpsmith
    Member

    Yes, Genesis Custom Post Types Archives needs to be updated. 🙂 Why is that plugin author so lazy!


    Travis Smith | Recommended StudioPress Developer & Contributor
    WP Smith | @wp_smith | GitHub

    Due to the forums, please paste code using Pastebin, JS Fiddle (for JavaScript) or GitHub.
    How to use Firebug for Designers by SixRevisions

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 91 total)
1 2 3 4 5 →

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