• 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

rasor

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 15 posts - 21 through 35 (of 35 total)
← 1 2
  • Author
    Posts
  • December 30, 2015 at 8:53 pm in reply to: Add Logo Inside Navigation Bar (before menu) #175252
    rasor
    Participant

    Try this plugin. Nav Menu Images. It's a little old. But still works.


    rasor @ WPBasics.org | Buy me a coffee

    December 25, 2015 at 7:36 pm in reply to: Comment pagination not working in Agency #174812
    rasor
    Participant

    Once I click on "New Comments" I get the screen below

    How to get a payday loan refund

    I see two buttons. Older Comments and Newer Comments.

    Please clarify what you are expecting to see.


    rasor @ WPBasics.org | Buy me a coffee

    December 25, 2015 at 2:57 pm in reply to: Add space after featured image on a post #174810
    rasor
    Participant
    img {
    padding-bottom: 20px;
    }

    try this instead. add it to the bottom of style.css


    rasor @ WPBasics.org | Buy me a coffee

    December 23, 2015 at 2:27 pm in reply to: Add space after featured image on a post #174666
    rasor
    Participant

    try `img.attachment-post-image.wp-post-image {
    padding-bottom: 20px;
    } `


    rasor @ WPBasics.org | Buy me a coffee

    December 19, 2015 at 11:00 pm in reply to: Spacing on the space bar #174369
    rasor
    Participant

    you can put it in styles.css or you can use a custom css plugin.


    rasor @ WPBasics.org | Buy me a coffee

    December 18, 2015 at 10:59 pm in reply to: Spacing on the space bar #174314
    rasor
    Participant
    input.search-field {
        margin-bottom: 15px;
    }

    this should do the trick


    rasor @ WPBasics.org | Buy me a coffee

    December 18, 2015 at 2:00 pm in reply to: Change just header links to white #174280
    rasor
    Participant

    Glad it worked out for you


    rasor @ WPBasics.org | Buy me a coffee

    December 18, 2015 at 1:28 pm in reply to: Change just header links to white #174270
    rasor
    Participant

    .genesis-nav-menu a {color:white;}
    this should do the trick


    rasor @ WPBasics.org | Buy me a coffee

    December 18, 2015 at 12:48 pm in reply to: Change just header links to white #174249
    rasor
    Participant

    .site-title a{color:white;}

    this should work


    rasor @ WPBasics.org | Buy me a coffee

    November 11, 2015 at 10:43 am in reply to: Magazine Pro – Move logo to primary nav #170775
    rasor
    Participant

    here is the code. not sure why the weird characters got added.

    //* Logo to Primary Nav 
    add_filter( 'genesis_nav_items', 'ja_logo_to_primary', 10, 2 );
    add_filter( 'wp_nav_menu_items', 'ja_logo_to_primary', 10, 2 );
    /**
     * based on Bill Erickson code http://www.billerickson.net/genesis-wordpress-nav-menu-content/
     */
    function ja_logo_to_primary($menu, $args) {
    	$args = (array)$args;
    	if ( 'primary' !== $args['theme_location']  )
    		return $menu;
    	$ja_logo = '<li id="ja_logo">Follow: <a href="http://localhost/wpbasics/"><img src="http://localhost/wpbasics/wp-content/uploads/2015/09/WPbasics_header.png" /></li>';
    	return $ja_logo . $menu;
    }

    rasor @ WPBasics.org | Buy me a coffee

    November 11, 2015 at 9:50 am in reply to: Magazine Pro – Move logo to primary nav #170769
    rasor
    Participant

    Extra code added as I am on mobile. Will correct as soon as I get home


    rasor @ WPBasics.org | Buy me a coffee

    November 11, 2015 at 9:22 am in reply to: Magazine Pro – Move logo to primary nav #170747
    rasor
    Participant

    try adding this to the function.php

    //* Logo to Primary Nav 
    add_filter( 'genesis_nav_items', 'ja_logo_to_primary', 10, 2 );
    add_filter( 'wp_nav_menu_items', 'ja_logo_to_primary', 10, 2 );
    /**
     * based on Bill Erickson code http://www.billerickson.net/genesis-wordpress-nav-menu-content/
     */
    function ja_logo_to_primary($menu, $args) {
    	$args = (array)$args;
    	if ( 'primary' !== $args['theme_location']  )
    		return $menu;
    	$ja_logo = '&lt;li id="ja_logo"&gt;Follow: <a href="http://localhost/wpbasics/"><img src="http://localhost/wpbasics/wp-content/uploads/2015/09/WPbasics_header.png" /></li>';
    	return $ja_logo . $menu;
    } 

    and this to the styles.css

    #ja_logo {
    	float: left;
    	width: 15%;
    	margin-top: -12px;
    }
    
    #ja_logo a {
    	padding: 0;
    }

    It may not be the best way but it should get the job done. replace the href with your home url and the img src with the location of your logo.
    hope it helps


    rasor @ WPBasics.org | Buy me a coffee

    November 9, 2015 at 7:55 pm in reply to: switching themes #170619
    rasor
    Participant

    Just install the new theme and follow the theme setup instructions that are provided with studiopress themes. It will automatically access the database. No need to mess with the database.


    rasor @ WPBasics.org | Buy me a coffee

    November 9, 2015 at 7:14 pm in reply to: switching themes #170613
    rasor
    Participant

    Posts are saved in a database. You can switch themes without losing the posts


    rasor @ WPBasics.org | Buy me a coffee

    November 9, 2015 at 3:16 pm in reply to: Featured Posts image problem #170597
    rasor
    Participant

    I had this problem once. I was using Cloudflare. Had to clear Cloudflare cache. Are you using Cloudflare?


    rasor @ WPBasics.org | Buy me a coffee

  • Author
    Posts
Viewing 15 posts - 21 through 35 (of 35 total)
← 1 2
« 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