• 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

John

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 - 221 through 240 (of 254 total)
← 1 2 3 … 11 12 13 →
  • Author
    Posts
  • December 10, 2012 at 8:55 pm in reply to: Assistance with IE Error #4360
    John
    Participant

    Which version of IE?


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 8:52 pm in reply to: Education Theme Help #4359
    John
    Participant

    Jeff,

    You can add this code to your home.php file to remove the Loop and the sidebar from your home page:

    remove_action( 'genesis_loop', 'genesis_do_loop' );
    remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );

    Then you could do something similar to remove the sidebar on the other page templates, or work up a function with a conditional in your functions.php file and specify which pages it runs on.

    John

     


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 6:35 pm in reply to: Not able to comment even though Comments are open #4336
    John
    Participant

    I was able to duplicate this on a new development site that I'm working on, and after looking on Google I found this solution, which I tried and it worked for me. It involves a database SQL query, but it works.

    http://wordpress.org/support/topic/cant-get-my-comments-to-work-for-old-posts?replies=3

    I'd still double-check the existence of a comment plugin of some sort. Something is adding a math captcha to the comment form, unless that's included in WordPress now?


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 3:41 pm in reply to: Advanced custom post types #4283
    John
    Participant

    You could use a plugin, but I think you'll be better off in the long run by learning how to actually write and use the code for CPTs.

    I'd start in the Codex:ย http://codex.wordpress.org/Custom_Post_Types

    And then have a look at these:

    ย http://wp.smashingmagazine.com/2011/06/02/how-to-build-a-media-site-on-wordpress-part-1/

    http://wplift.com/wordpress-custom-post-types-tutorials-tools-advice


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 3:24 pm in reply to: html in a text box #4274
    John
    Participant

    It is possible - every widget is assigned a specific ID by WordPress which you can use in your CSS to customize that particular widget. Firebug will help you drill down to what that ID is.


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 3:19 pm in reply to: Not able to comment even though Comments are open #4271
    John
    Participant

    Are you using Jetpack for a comments plugin? Or something different?


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 2:48 pm in reply to: Full Width Header – White Background – News Theme #4258
    John
    Participant

    You're welcome!


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 1:44 pm in reply to: Full Width Header – White Background – News Theme #4251
    John
    Participant

    We're getting there...

    Add !important to #header, so it looks like this:

    #header {
    background: ย none repeat scroll 0 0 #fff !important;
    border: none;
    width: 100%;
    }

    Then, the logo isn't showing up because of a strange character in the image URL. I'd recommend renaming that image file name without any special characters, and then using that in the following code. For example, a better file name would beย xohawaii-logo.jpg

    #header #title-area {
    background:ย url(http://xohawaii.com/wp-content/uploads/2012/12/xohawaii-logo.jpg) no-repeat scroll 0 0 transparent;
    }


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 1:18 pm in reply to: Studiopress Support – new vs. old #4243
    John
    Participant

    Nick,

    Amen to the community aspect - that's what I appreciated about WooThemes' forums at first, but then they disabled that so you could only comment on your own forum threads. Bad move in my opinion, but it did keep newbies from posting questions in other user's threads. No perfect solution, I guess.

    Do you think we can get RSS feeds turned on for the forums? I don't mind helping out, but (I think) it would be easier for me to keep an eye on the forums if I could add them to my feedreader.

    John


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 12:52 pm in reply to: Full Width Header – White Background – News Theme #4229
    John
    Participant

    I think you'd be better off pasting my code at the end/bottom of your style.css file because of how the CSS cascade works, at least for now, rather than replacing the default code.


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 12:15 pm in reply to: Help With Customizing Template Pages #4215
    John
    Participant

    Kent,

    Once you start using CPTs your WordPress possibility horizons will expand considerably - I highly recommend using them.

    I've had good experiences with a plugin called Taxonomy Picker and using the provided widget in a sidebar. Here's one example of that:ย http://aheartforjustice.com/organizations/ (it's the "Search Organizations" widget)

    When you create your CPT you'd need to create one or more taxonomies to go with it, and one taxonomy could be "name" or something similar, and then you'd add terms (just like tags or categories), with each term being a letter of the alphabet. From then on it's dynamic and does the filtering for you, as long as you "tag" a post with the right term.

    Once you wrap your brain around how CPTs, taxonomies, and page templates all work together, you can do all kinds of cool WordPress stuff.

    John


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 12:04 pm in reply to: Full Width Header – White Background – News Theme #4210
    John
    Participant

    If I understand correctly what you're asking, I think this is what you want to do:

    #header {
    background: ย none repeat scroll 0 0 #fff;
    border: none;
    width: 100%;
    }
    #header .wrap {
    margin: 0 auto;
    width: 960px;
    }
    #header #title-area {
    background:ย url(http://xohawaii.com/wp-content/uploads/2012/12/xoHAWAi’i-Logo-465x110.jpg) no-repeat scroll 0 0 transparent;
    }

    And I'd keep a border under the subnav by adding this:

    #subnav {
    border-bottom:ย 1px solid #D5D5D5;
    }


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 11:43 am in reply to: Help With Customizing Template Pages #4201
    John
    Participant

    I'm thinking that creating a custom post type called 'player' is going to be your best bet, and then use a page template(s) that queries that CPT.

    Styling will be easier to figure out once you actually have some posts in place and then you can figure out the specific class or classes you need to use.

    That's an interesting use of WP-Table Reloaded on your Player Stats Archive. Are you going to manually link each one of those cells to the archive for that letter?


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 11:33 am in reply to: Studiopress Support – new vs. old #4195
    John
    Participant

    I became a WooThemes customer almost two years ago, and a big reason for doing so was their excellent support forum. I learned a ton about WordPress, both on the design and development sides, by reading through the forums and occasionally asking a question when I couldn't find an answer. Woo recently did away with their forum and switched to a ticket system, which was not well received by their more loyal and vocal clients. They've since backpedaled on that decision and are still trying to figure out what they're doing and how they're going to do it.

    They also made some other big changes which caused me to look elsewhere for a more stable primary theme provider, and I rediscovered StudioPress / Genesis and decided that this was a framework and theme provider that I could build a better business on. Shortly after I switched the announcement came out about big support changes, and I thought, "Here we go again!"

    Fortunately I'm on a part of the WordPress learning curve that isn't so steep anymore, and I don't rely on support as much as in the beginning, but if I was just getting started I would "probably" look for a provider that had an active support forum where I could search for solutions and not have to wait on a ticket system.

    For what it's worth...


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 11:04 am in reply to: Help With Customizing Template Pages #4190
    John
    Participant

    Hey Kent,

    If you provide a link to the site, and the specific page, that will help us help you.

    The post title style can be changed in your style.css file, but the order in which the posts appear is modified in your page template.

    John


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 11:01 am in reply to: Outreach – Home Featured #4189
    John
    Participant

    The home page widget areas that come with the theme only work if the home page is not set to a static page. It's somewhat counter-intuitive, but that's the way the themes work.


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 8:55 am in reply to: Full Width Header – White Background – News Theme #4165
    John
    Participant

    And personally, I'd add this to make the space around those social icons more proportional:

    #subnav li.social-facebook a,
    #subnav li.social-facebook a:hover,
    #subnav li.social-rss a,
    #subnav li.social-rss a:hover,
    #subnav li.social-twitter a,
    #subnav li.social-twitter a:hoverย {
    margin: 5px 10px 0 0;
    }

    and then change the padding in #subnav to

    padding: 0 0 4px;

     


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 10, 2012 at 8:47 am in reply to: Full Width Header – White Background – News Theme #4163
    John
    Participant

    Try this at the end of your style.css:

    #subnav {
    background-color: #fff;
    padding: 0 0 8px;
    width: 100%;
    }
    #subnav ul {
    float: none;
    margin: 0 auto;
    width: 960px;
    }

    You might want to play with the padding size in #subnav to get that lined up correctly.


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 9, 2012 at 6:18 pm in reply to: CSS fix for Education theme dropdown menu issue (here's how) #4069
    John
    Participant

    Lil Chris, do you have a link to that information?

    I haven't heard that yet, but my thought is that there are so many versions of Firefox around that you'd be better off leaving it in there.


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

    December 9, 2012 at 5:43 pm in reply to: CSS fix for Education theme dropdown menu issue (here's how) #4064
    John
    Participant

    You're welcome!


    John Sundberg | blackhillswebworks.com
    A WordPress developer’s toolbox: Firebug | WordPress Codex | Google ๐Ÿ˜‰

  • Author
    Posts
Viewing 20 posts - 221 through 240 (of 254 total)
← 1 2 3 … 11 12 13 →
« 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