• 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

angieatc

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 63 total)
1 2 3 4 →
  • Author
    Posts
  • January 12, 2015 at 4:43 pm in reply to: Showing full posts instead of "post content" #137251
    angieatc
    Member

    If I am understanding you correctly, you just want full posts, if so, under "Display Post Content" and under limit content to, make it 0. That should make your home page have full posts.

    If this does not work please comeback and let me know.


    My design site, Hill Springs Designs

    January 12, 2015 at 4:29 pm in reply to: Advice on child themes for a new subscriber #137249
    angieatc
    Member

    If you want simple and can change the colors within the dashboard I would go with Prose but if you have knowledge of HTML/CSS you could purchase any theme and just update the theme via your hosting cPanel to match the colors you like. You can also download the free Genesis Child Theme and practice until you figure out what you want to do. There are plenty of tutorials out there to help do customization of a theme.

    Good luck and welcome to the StudioPress community!


    My design site, Hill Springs Designs

    January 12, 2015 at 4:24 pm in reply to: Changing Font Color on Links #137245
    angieatc
    Member

    Look for these 2 lines in your CSS

    a {
    color: #dae3ec;
    text-decoration: none;
    }

    a:hover {
    color: #333;
    }

    So the a is your link which should be #333 and your a:hover is the hover color and you want to change that color in your CSS.


    My design site, Hill Springs Designs

    January 11, 2015 at 7:47 am in reply to: Question about font on Going Green Theme #136992
    angieatc
    Member

    Yes you can change the colors of the fonts in the CSS. You can also change the fonts by using google fonts (easiest way) as well.


    My design site, Hill Springs Designs

    March 23, 2014 at 4:12 pm in reply to: Help with Responsive Header #96267
    angieatc
    Member

    OK, I changed some things around but I never had your code you just posted:

    .header-image .site-header .wrap {
    background: url(images/LogoX2.png) no-repeat left;
    background-size: 300px 164px;
    }
    }

    But now I have a huge spaces and part of the header is being cut off. I am so confused now. I tried Lindsey's tutorial and that did not work for me so I tried Jessica's on another site and that is what I used but I am missing something!

    This is what I have now:


    @media
    only screen and (max-width: 480px) {
    .header-image .site-header .wrap {
    background: url(images/logo480.png) no-repeat left;
    height: 262px;
    width: 480px;
    }


    @media
    only screen and (max-width: 320px) {
    .header-image .site-header .wrap {
    background: url(images/logo320.png) no-repeat left;
    height: 94px;
    width: 320px;
    }


    @media
    only screen and (max-width: 240px) {
    .header-image .site-header .wrap {
    background: url(images/logo240.png) no-repeat left;
    height: 70px;
    width: 240px;
    }

    and it is still not messing up.

    (I edited the post to put this code in here).


    My design site, Hill Springs Designs

    March 23, 2014 at 3:45 pm in reply to: Help with Responsive Header #96259
    angieatc
    Member

    Thanks Susan, but that logox2 is an image I have changed to a different image that goes with the site.


    My design site, Hill Springs Designs

    February 26, 2014 at 2:05 pm in reply to: Social icons in color #92526
    angieatc
    Member

    I found this on a forum I belong to but if you use Firebug you can figure it out as well. So here is the example.

    .simple-social-icons ul li.social-email a {
    background-color: #fdcf0e !important;
    }

    You would obviously change the email to what facebook, twitter, etc or whatever Firebug is telling you it is called.


    My design site, Hill Springs Designs

    February 26, 2014 at 2:02 pm in reply to: how to add a favicon #92524
    angieatc
    Member

    Make sure it is an .ico file when you replace it and you might have to clear your cache. For me at times it can take a day or 2 for it to update correctly.


    My design site, Hill Springs Designs

    February 9, 2014 at 8:44 pm in reply to: Location of Social Media buttons #89575
    angieatc
    Member

    Had to add: <div style="clear:both"></div>


    My design site, Hill Springs Designs

    November 23, 2013 at 3:54 pm in reply to: Spacing Help #75298
    angieatc
    Member

    I got it, I had min-height and as soon as I removed it it fixed it!


    My design site, Hill Springs Designs

    November 12, 2013 at 8:58 am in reply to: Help with Menu #72464
    angieatc
    Member

    Thanks, I have played around with the text-indent and right now I have it at a -500px and the drop downs are way off. If I put it any lower the text appears on the menu.


    My design site, Hill Springs Designs

    August 17, 2013 at 4:08 pm in reply to: Function Error in Prose #57090
    angieatc
    Member

    I tried, I get an error:

    /* Plugin Name: Prose Custom Code Plugin URI: http://example.com Description: Loads customizations for my site Version: 0.1.0 Author: Angie Lambert Author URI: http://strosgirldesigns.com License: GPLv2 or later */ /** Add description to secondary navigation */ add_filter( 'walker_nav_menu_start_el', 'add_description', 10, 4 ); function add_description( $item_output, $item, $depth, $args ) { $args = (array) $args; if ( $args['theme_location'] != 'primary' ) { return preg_replace( '/([^<]*?){$item->post_content}<", $item_output ); } else { return $item_output; } }

    **edit, I did not remove the code from the functions so it gave me the line error but this is the error I get now.


    My design site, Hill Springs Designs

    August 17, 2013 at 3:55 pm in reply to: Function Error in Prose #57087
    angieatc
    Member

    So would the code look like this in the file and save it as extracode.php (or whatever I want to add? Would I add post signature and other codes in there as well?

    /*
    Plugin Name: Prose Custom Code
    Plugin URI: http://example.com
    Description: Loads customizations for my site
    Version: 0.1.0
    Author: Angie Lambert
    Author URI: http://strosgirldesigns.com
    License: GPLv2 or later
    */
    
    /** Add description to secondary navigation */
    add_filter( 'walker_nav_menu_start_el', 'add_description', 10, 4 ); 
    function add_description( $item_output, $item, $depth, $args ) {
    
    	$args = (array) $args;
           
    	if ( $args['theme_location'] != 'primary' )  {
    		return preg_replace( '/(<a.*?>[^<]*?)</', '$1' . "<span class=\"menu-description\">{$item->post_content}</span><", $item_output ); 
    	}
    	else {
    		return $item_output;
    	}
    
    }

    My design site, Hill Springs Designs

    August 4, 2013 at 1:25 pm in reply to: Menu help – Metro Theme #54153
    angieatc
    Member

    Ok the functions code made mine work, weird that was not in my original file. I just downloaded my code last weekend I think so it should have been there.

    Thanks for your help!


    My design site, Hill Springs Designs

    August 4, 2013 at 1:20 pm in reply to: Menu help – Metro Theme #54150
    angieatc
    Member

    Thanks Anita!

    Mine did not appear before I updated. I think I just updated yesterday morning so I am not sure what the heck is going on.


    My design site, Hill Springs Designs

    August 4, 2013 at 11:12 am in reply to: Menu help – Metro Theme #54129
    angieatc
    Member

    WHAT?!?!

    Here is what I have, you can see the screen shot here


    My design site, Hill Springs Designs

    August 4, 2013 at 10:15 am in reply to: Menu help – Metro Theme #54120
    angieatc
    Member

    That is where I am confused because I do have the widget in place in my widgets section.


    My design site, Hill Springs Designs

    August 4, 2013 at 10:04 am in reply to: Menu help – Metro Theme #54116
    angieatc
    Member

    The primary navigation is correct it is the yellow menu.

    And for the secondary nav menu slot I put a text widget there, that is what it says and yes I followed the directions, that is why I am confused.


    My design site, Hill Springs Designs

    August 4, 2013 at 9:21 am in reply to: Menu help – Metro Theme #54108
    angieatc
    Member

    And what is weird, is if I move the tab services out from the 1st slot on the menu the menu looks fine but if I leave it in the 1st position it goes to the top line and moves everything down. WEIRD


    My design site, Hill Springs Designs

    August 4, 2013 at 9:13 am in reply to: Menu help – Metro Theme #54106
    angieatc
    Member

    AHA thanks! I looked at that but was not sure about it.

    I am talking about the text area on the left hand side. If you look at the demo here you can see the text on the left hand side on the sub-nav, this is the area I am talking about.


    My design site, Hill Springs Designs

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

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