• 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

brock

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 - 21 through 40 (of 166 total)
← 1 2 3 … 7 8 9 →
  • Author
    Posts
  • June 21, 2016 at 12:48 am in reply to: Eleven40 Pro Heder image and nav color #187914
    brock
    Member

    Hey,

    You can change the color of the header by finding this selector in your style.css file:

    .site-header {
    background-color: yourcolor;
    }

    As for adding a site-wide banner, you could add this in your functions.php:

    
    //* Hooks a sitewide banner before the header
    add_action( 'genesis_after_header', 'bc_site_wide_banner');
    function bc_site_wide_banner() { ?>
    <div class="site-wide-banner"><img src="YOUR IMAGE HERE" alt="this describes the picture"></div>
    <?php } ?>
    
    Note: Watch out for those closing php tags. Try adding the snippet to the end of your functions.php file so you don't get any errors.

    And some basic styling for the site wide banner to your style.css file:

    
    /* Site Wide Banner */
    .site-wide-banner > img {
    	height: 300px;
    	width: 100%;
    }

    You can adjust the values according to how you want your image to display. This will create a banner that goes the full width of the page.

    June 20, 2016 at 6:27 pm in reply to: CSS location/editor question #187894
    brock
    Member

    I will add a few things that I hope might help, Steve. One thing to realize is that even if JavaScript/jQuery is setting the style properties of the element, it will show up as an inline-style in the console. In chrome, it looks like element.style { property: value; } and shows up first on the list. You can also use that same area to add your own inline-styles to the HTML element - with FireBug or chrome's developer tools. So, you can try setting your own height value even if there isn't one that has been set by default in your theme. Victor said height isn't always set. Rather it will be determined by the content within it (see CSS box model). That is, unless it is given an specific height value.

    I think that if you want to really manipulate web pages you will want to learn HTML, CSS, and JavaScript (jQuery is a JS library). I don't think you need to buy that plugin to learn those though. You can use notepad++ or whatever free editor is on your computer to edit your CSS and JS files. However, that plugin which I know nothing about, more likely will help you achieve what you want without having to do a lot of homework about CSS.

    You can learn more about the CSS height property here.

    June 20, 2016 at 5:41 pm in reply to: Metro background image #187890
    brock
    Member

    There should be an option for that in the WP customizer. Have a look at the theme setup guide that came with the theme.

    June 20, 2016 at 5:28 pm in reply to: Posts and Post Page Date Removal #187889
    brock
    Member

    Have you tried this?

    Copy and paste into funtions.php:

    //* Removes the date from the entry meta
    //* Customize the entry meta in the entry header (requires HTML5 theme support)
    add_filter( 'genesis_post_info', 'sp_post_info_filter' );
    function sp_post_info_filter($post_info) {
    	$post_info = 'by [post_author_posts_link] [post_comments] [post_edit]';
    	return $post_info;
    }
    June 14, 2016 at 7:52 pm in reply to: Footer Text on Agency Pro Theme #187549
    brock
    Member

    Try this:

    Footer

    June 14, 2016 at 1:19 pm in reply to: Footer Text on Agency Pro Theme #187537
    brock
    Member

    There is a tutorial for it on the StudioPress site, under questions.

    June 7, 2016 at 9:54 pm in reply to: Making Genesis Sample Menu Full Width #187147
    brock
    Member

    Haha! Genesis has a wrapper class, .wrap. This add_theme_support function is telling Genesis to only add the .wrap class to the specified areas. It excludes the primary navigation, so that its inner elements aren't nested inside of that wrapper class.

    If you look in your style.css file, you can find the .wrap and see what width it has. Everything that gets that class is being hemmed in by whatever that width is set to.

    June 7, 2016 at 9:31 pm in reply to: Making Genesis Sample Menu Full Width #187145
    brock
    Member

    Oops, we posted at the same time. Yeah, you added an extra curly brace and that broke it. Glad you're back in!

    June 7, 2016 at 9:30 pm in reply to: Making Genesis Sample Menu Full Width #187144
    brock
    Member

    Put your mind at ease. These types of errors occur regularly when editing a function.php file and aren't cause for alarm.

    You should have FTP access. You can get to your files via FTP with FileZilla or a similar free program. You just need to get your FTP credentials. This is a preferable way of editing your files in the future. You must've been making your edits right there in the admin area - you now see why that isn't optimal.

    Once you get the functions file opened again, the curly-brace will be easy to spot and fix as you have the line number and know what to look for. Sometimes php errors will be one line less than specified in the error message.

    June 7, 2016 at 8:52 pm in reply to: Making Genesis Sample Menu Full Width #187138
    brock
    Member

    Look on line 125. You have a simple syntax error which is an extra or misplaced closing curly-brace. This might be due to where you pasted the code above (which has no closing curly-brace in it). Also, I should've mentioned to make sure your theme doesn't already have a similar line (setting the structural wraps) anywhere else in functions.php. If it does, you can just make the change on the one already there without repeating it twice.

    June 7, 2016 at 8:15 pm in reply to: Making Genesis Sample Menu Full Width #187133
    brock
    Member

    For making the menu full width, add this to your functions.php file

    // Removes the structural wrap from primary navigation
     add_theme_support( 'genesis-structural-wraps', array( 'header', 'menu-secondary', 'footer-widgets', 'footer' ) );

    I'm not too sure about your mobile menu and I'm not familiar with uber menus.

    May 24, 2016 at 4:07 pm in reply to: Change Heading size in Metro Pro theme #186217
    brock
    Member

    Your change is being overriden by the .entry-title class. Change the font size on that.

    May 23, 2016 at 6:17 pm in reply to: cannot add a link within wordpress #186160
    brock
    Member

    Did you try activating one of the WordPress default themes instead?

    May 23, 2016 at 6:11 pm in reply to: How to Get Rid of Site Title? #186159
    brock
    Member

    Hey there,

    There is no such thing as a functions folder. What you are thinking of is the functions.php file. No need to create any new files.

    So you already have a logo picked out that you want in place of the site title? Maybe this article is what you need.

    May 19, 2016 at 9:07 pm in reply to: Sixteen Nine Pro Customise Screen Will Not Open #185931
    brock
    Member

    What all have you tried, i.e., downloading a fresh copy of the theme and re-installing it, re-installing WordPress itself, activating another theme, etc?

    May 17, 2016 at 10:16 am in reply to: How to re-arrange simple HTML code…? #185767
    brock
    Member

    This looks like it might be the code you need to paste in your functions.php file. You might need to modify it slightly.

    May 17, 2016 at 6:34 am in reply to: how to change post title from H2 to H1 #185758
    brock
    Member

    Why are you trying to do it? You should not change the HTML tag strictly for styling purposes. I believe it would be more semantic HTML if you leave them as they are. Instead, if you want larger post titles, change the font-size of the .entry-title class.

    May 16, 2016 at 7:05 am in reply to: Some CSS code in Genesis that I don't understand #185700
    brock
    Member

    I don't know what theme you are using but they are CSS transitions. You can read more about them and see examples here. I think they are creating a gliding effect on form elements, links, and images within a gallery somewhere. After you see some examples on that link, I'm sure you can spot them. Their purpose is aesthetic. I hope this helps a little.

    May 6, 2016 at 9:56 pm in reply to: Add a header/title in Authorpress Frontpage2 widget area #185140
    brock
    Member

    Add this to the functions.php file:

    
    // Add "Featured Books" title to the homepage
    function add_featured_books_title () {
    	if ( !is_front_page() ) {
    		return;
    	} else {
    		echo "<h1 id='featBooks'>Featured Books</h1>";		
    	}
    }
    
    add_action( 'genesis_loop', 'add_featured_books_title' );
    

    And add this to the style.css file:

    
    /* Custom Styles */
    #featBooks {
    	text-align: center;
    	padding-top: 40px;
    }
    
    May 6, 2016 at 9:32 pm in reply to: Add a header/title in Authorpress Frontpage2 widget area #185135
    brock
    Member

    Do you still need help with this?

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 166 total)
← 1 2 3 … 7 8 9 →
« 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