• 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

nunotmp

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 - 101 through 120 (of 156 total)
← 1 2 3 … 5 6 7 8 →
  • Author
    Posts
  • December 19, 2013 at 4:02 pm in reply to: Seeking CSS help with form styling #80328
    nunotmp
    Member

    Make sure your selectors have enough weight. Your form is wrapped in an id of contactForm so target it with #contactForm and work from there. Place the css at the bottom of your css.


    Genesis Child Themes – Follow Me

    December 19, 2013 at 3:59 pm in reply to: Remove post meta function not working #80327
    nunotmp
    Member

    The author is controlled by the post info so you will need to add remove_action( 'genesis_before_post_content', 'genesis_post_info' );


    Genesis Child Themes – Follow Me

    December 19, 2013 at 3:51 pm in reply to: Help changing hover button color on metro theme #80324
    nunotmp
    Member

    It is that block of CSS, more specifically it is the line .metro-blue input:hover[type="submit"] it changes with no issue using the developer tools. How are you editing the file? FTP or WordPress editor? Double check that it is saving correctly.


    Genesis Child Themes – Follow Me

    December 19, 2013 at 3:45 pm in reply to: How to change CSS for website title #80323
    nunotmp
    Member

    Your css will be in the style.css file in the themes folder. You can navigate to your file like so wp-content/themes/beautiful-pro/style.css


    Genesis Child Themes – Follow Me

    December 19, 2013 at 3:41 pm in reply to: post code into function.php #80322
    nunotmp
    Member

    Great. 🙂


    Genesis Child Themes – Follow Me

    December 19, 2013 at 4:31 am in reply to: How to add Big Button in Metro PRO #80155
    nunotmp
    Member

    I just took a look at the css and it looks like they assaign the class alignleft to the menu item. To do this simply add it to first menu item. Here is a screenshot to help you out. http://awesomescreenshot.com/0eb2451684


    Genesis Child Themes – Follow Me

    December 19, 2013 at 2:35 am in reply to: Move Breadcrumbs Inside a Specific Div #80148
    nunotmp
    Member

    In the action add_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' ); the function genesis_do_breadcrumbs is called. This is simply a call to the breadcrumbs so you can place the function where you would like. More than likely there is a hook in the location you would like to show the breadcrumbs already but if not just call the function in your template files like so genesis_do_breadcrumbs()


    Genesis Child Themes – Follow Me

    December 19, 2013 at 2:23 am in reply to: post code into function.php #80147
    nunotmp
    Member

    Try using remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );

    This will target the post info and not the post meta.


    Genesis Child Themes – Follow Me

    December 7, 2013 at 11:44 pm in reply to: Change font and background colour? #77625
    nunotmp
    Member

    You will need to add a background to either the #content div or .entry div.
    Adding a background to line 387 will result to http://awesomescreenshot.com/00d22a9bbc

    
    .content-sidebar #content, .sidebar-content #content, #title-area {
    width: 65.277777777%;
    background: white;
    }
    

    Genesis Child Themes – Follow Me

    September 28, 2013 at 10:41 pm in reply to: Header & Genesis Plugin for Outreach? #64649
    nunotmp
    Member

    Hey Liz,

    It looks like a stylesheet calls for the logo two times.

    
    #title-area a {
    background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) no-repeat !important;
    }
    

    and

    
    #header .wrap #title-area {
    background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) left top no-repeat!important;
    }
    

    if you remove both of these calls and add

    
    #header .wrap {
    background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) left top no-repeat!important;
    height: 120px;
    }
    

    You header will display like so example


    Genesis Child Themes – Follow Me

    September 28, 2013 at 10:29 pm in reply to: Can't figure out how to change dropdown menu color? #64645
    nunotmp
    Member

    In your style.css file on line 1059

    
    .genesis-nav-menu .sub-menu a {
    background-color: #02193A;  /* Use this color instead */
    font-size: 12px;
    font-size: 1.2rem;
    padding: 12px 16px;
    padding: 1.2rem 1.6rem;
    position: relative;
    width: 175px;
    }
    

    Genesis Child Themes – Follow Me

    September 24, 2013 at 11:08 pm in reply to: Genesis / Woocommerce #64046
    nunotmp
    Member

    The only issue I ran into is when I was attempting to display the cart when it was empty, I was getting an error. I wrapped the cart in this `
    if ( sizeof( $woocommerce->cart->cart_contents ) == 0 ) {
    echo '<p class="empty-cart">Your shopping cart is empty!</p>';
    }
    `
    Other than that it was smooth sailing.


    Genesis Child Themes – Follow Me

    September 24, 2013 at 7:10 am in reply to: Grid Loop – News Theme #63954
    nunotmp
    Member

    You may consider using Bill Erickson's "grid loop". This uses the post_class filter. http://www.billerickson.net/a-better-and-easier-grid-loop/


    Genesis Child Themes – Follow Me

    September 24, 2013 at 6:33 am in reply to: Move/Remove the "(Edit)" post link on pages #63953
    nunotmp
    Member

    You are welcome. Glad I could help.


    Genesis Child Themes – Follow Me

    September 23, 2013 at 10:56 pm in reply to: Move/Remove the "(Edit)" post link on pages #63934
    nunotmp
    Member

    Try this add_filter( 'genesis_edit_post_link', '__return_false' );


    Genesis Child Themes – Follow Me

    September 23, 2013 at 10:47 pm in reply to: How to insert custom markup outside of header's .wrap? #63931
    nunotmp
    Member

    @garyj Thank you. Its good to know I got the thumbs up from a developer of your caliber. : -)


    Genesis Child Themes – Follow Me

    September 17, 2013 at 9:27 am in reply to: How to insert custom markup outside of header's .wrap? #62984
    nunotmp
    Member

    If you look at the Genesis files you can navigate to Genesis>lib>structure>header.php. This is where these functions are created.

    add_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    add_action( 'genesis_header', 'genesis_header_markup_close', 15 );
    

    You don't really have to create a custom hook, you can insert your markup directly into the header_close function but I like to use hooks. 🙂


    Genesis Child Themes – Follow Me

    September 17, 2013 at 9:21 am in reply to: Where is the Help Desk/Support Ticket? #62983
    nunotmp
    Member

    You can use the contact form here http://www.studiopress.com/contact
    You can use any plugin/widget that WordPress allows.


    Genesis Child Themes – Follow Me

    September 16, 2013 at 8:26 pm in reply to: Where is my CSS file for editing? #62936
    nunotmp
    Member

    Perhaps. I am unfamiliar with WordPress MultiSite. I hope you get it figured out.


    Genesis Child Themes – Follow Me

    September 16, 2013 at 8:10 pm in reply to: Where is my CSS file for editing? #62933
    nunotmp
    Member

    Maybe this image will help.
    Vistor


    Genesis Child Themes – Follow Me

  • Author
    Posts
Viewing 20 posts - 101 through 120 (of 156 total)
← 1 2 3 … 5 6 7 8 →
« Previous Page

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