• 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

Genesis User Profile Widget

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

Community Forums › Forums › Archived Forums › General Discussion › Genesis User Profile Widget

This topic is: resolved

Tagged: Genesis User Profile widget

  • This topic has 12 replies, 2 voices, and was last updated 11 years ago by Anthony Galli.
Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • April 16, 2014 at 10:49 am #100694
    Anthony Galli
    Member

    How can I get the text of my User Profile Widget on anthonygalli.com to be the same format as the widget's header?


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    http://anthonygalli.com
    April 16, 2014 at 11:05 am #100698
    Lauren @ OnceCoupled
    Member

    What do you mean by the same format?

    Your widget title is styled:

    .widget-area h4 {
         background: url(/wp-content/themes/streamline/images/headline.png?bad562) left no-repeat;
         color: #645f5b;
         margin: 0 0 20px;
         padding: 0 0 0 22px;
         text-decoration: none;
         text-transform: uppercase;
    }

    Just apply the features you want to ".user-profile p".

    Hopefully I haven't misunderstood this. 🙂

    Best,
    Lauren


    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 16, 2014 at 11:14 am #100699
    Anthony Galli
    Member

    Yea all my widgets have the same header format (with the exception of popular posts). I want that header to match the format (font size, color, boldness) of the text inside the User Profile Widget .

    What you posted, I think only shows font color. And how would I apply those features to ".user-profile p." Where is ".user-profile p" located? That might be an obvious question I'm not very tech savvy.

    Thanks for the help!!!


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    April 16, 2014 at 11:23 am #100704
    Lauren @ OnceCoupled
    Member

    Anthony, I can't quite understand if you want your widget text to look like your header, or your header text to look like your widget text.

    Either way, you will need to change the CSS styles in your theme editor.

    The difference between the two texts seems to only be the font color and the automatic transformation to uppercase.

    If you want your widget text to look like your header text, then add this block to the stylesheet:

    .user-profile p {
         color: #645f5b;
         text-transform: uppercase;
    }

    If you want your header text to look like your widget text, then find the block of code in your stylesheet that starts with ".widget-area h4" and replace these two lines:

         color: #000;
         text-transform: none;

    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 16, 2014 at 11:31 am #100708
    Anthony Galli
    Member

    I want the widget text to look like the header text.

    I added:

    .user-profile p {
    color: #645f5b;
    text-transform: uppercase;
    }

    to the bottom of the theme css file, but it didn't do anything. The difference between the two texts are font color, boldness, and size. If you look at my website do you see what I'm talking about? I think it would look neater if the header and widget text matched each other completely.

    Thanks so much for your help!!


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    April 16, 2014 at 11:45 am #100716
    Lauren @ OnceCoupled
    Member

    Have you cleared your cache? I am not seeing the change in your CSS file.


    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 16, 2014 at 12:07 pm #100723
    Anthony Galli
    Member

    I didn't see any changes so I took it back out of the css. I put it back in again and cleared the cache so you can see. Do you have a solution?

    Thank you for your patience!


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    April 16, 2014 at 12:56 pm #100730
    Lauren @ OnceCoupled
    Member

    It's after an invalid block, which is probably restricting it from being read. Remove this:

    //* Remove the post meta function
    remove_action( 'genesis_after_post_content', 'genesis_post_meta' );

    That should be in your functions.php file, not your CSS.

    The same goes for a little above that:

    add_filter( 'genesis_get_image_default_args', 'prefix_stop_auto_featured_image' );function prefix_stop_auto_featured_image( $args ){if ( ! isset( $args['context'] ) || 'archive' !== $args['context'] )
    return $args;$args['fallback'] = false;return $args}

    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 16, 2014 at 1:39 pm #100741
    Anthony Galli
    Member

    Thank you for clarifying that for me! I added those to the PHP instead. With those changes the color of the widget text changed, but I want it to match the header completely, which means I think it needs boldness & a smaller font.

    THANK YOU 🙂


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    April 16, 2014 at 4:36 pm #100845
    Lauren @ OnceCoupled
    Member

    You can add the appropriate CSS properties for those changes into that same block and they'll take effect. Glad we got a couple problems sorted out for ya!


    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 16, 2014 at 5:17 pm #100851
    Anthony Galli
    Member

    Thanks so much!

    I have a last question if you could help.

    How can I change the layout of the wording? I would like each point to have its own line as I showed below:

    Go from this:

    ADVENTURE, GOOD
    HABITS, AND
    QUANTIFIED SUCCESS
    #RALLYWITHGALLI

    to this:

    ADVENTURE,
    GOOD HABITS, AND
    QUANTIFIED SUCCESS
    #RALLYWITHGALLI

    Is there also a way I could also center align the text with the picture left of it (instead of having the text start where the picture starts)? If this question is too complicated it's not important. Thanks again!


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

    April 17, 2014 at 8:22 am #100953
    Lauren @ OnceCoupled
    Member

    To specify the line breaks, use the break tag: http://www.w3schools.com/tags/tag_br.asp

    To center align your text, use the text-align property: http://www.w3schools.com/cssref/pr_text_text-align.asp


    We create mobile-first, PageSpeed-optimized, pixel-perfect custom themes! https://www.oncecoupled.com

    April 17, 2014 at 12:48 pm #101005
    Anthony Galli
    Member

    Thank you very much! The changes look perfect now 🙂

    Enjoy your day!


    I blog about great adventures, good habits, and quantified success! Join me on the open road @ http://www.AnthonyGalli.com

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Genesis User Profile Widget’ is closed to new replies.

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