• 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

Tonya

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 - 241 through 260 (of 278 total)
← 1 2 3 … 12 13 14 →
  • Author
    Posts
  • July 1, 2014 at 8:14 pm in reply to: Category Specific Icons next to Post Title #112546
    Tonya
    Member

    Hi,

    Here is how I do it within my designs: Gist on GitHub. What this does is:

    • Adds a <span class="icon-cat-[category slug]"></span> within the post title's HTML string.
    • Places the span in the proper place depending upon if a hyperlink is present or not.

    You want to put this in your functions.php file.

    Then in your style.css file, you'll add the icon images (via background) there (try to use sprites if you can to help speed things up).

    I did something similar to this on this site.

    Cheers 馃檪


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 2:37 pm in reply to: Need help with header area #112506
    Tonya
    Member

    You're very welcome!

    If you'd do me a favor, please set this thread to Resolved.

    Enjoy your day 馃檪


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 1:52 pm in reply to: Balance Theme Header changing #112500
    Tonya
    Member

    To make your text all capital letters, then you want to add:

    text-transform: uppercase;

    Changing the font-weight lights and darkens the text.

    What I meant by changing the color is, doing the following:

    color: #4e4e4e !important;

    Place this line just after 252 in the style.css file. Notice that it "lightens" the titles because we used a lighter color than the #222 color.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 12:29 pm in reply to: Remove text in Header- pretty pictures theme #112481
    Tonya
    Member

    Hello,

    Are you talking about the words "Kohlenhydratarme Ern盲hrung" which are overlaid on the header image? If yes, this is your site's title. To "remove it", you need to add the following to your style.css file after line 247:

    #title-area {
    text-indent: -9999px;
    }

    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 12:22 pm in reply to: Genesis enews extended problem #112478
    Tonya
    Member

    Take a look at this thread http://www.studiopress.community/topic/genesis-2-1-0-duplicates-after-entry-widget-content/.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 12:18 pm in reply to: Need help with header area #112477
    Tonya
    Member

    Sorry about, Susan. I forgot to have you add the following lines to the .site-header .wrap styling within your style.css file.

    .site-header .wrap {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    }

    Give that a go.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 12:13 pm in reply to: News Pro – Remove Primary Sidebar #112476
    Tonya
    Member

    Wonderful. Glad it helped, Jon. If would be so kind, please mark this issue as Resolved.

    Enjoy your day 馃檪


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 12:10 pm in reply to: Balance Theme Header changing #112475
    Tonya
    Member

    Hi Tanya,

    You're Post Titles are currently set to font-weight of normal. The next step is to lower that font-weight value to see if you can achieve the look you want:

    .entry-title, .entry-title a {
    font-weight: 100;
    }

    font-weight can be 100, 200, 300, 400, and so on.

    If 100 is still not the look you want, then the next step is to change the color, by setting color: #[the color's hex value here]; Place this line in the same brackets above under font-weight.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    July 1, 2014 at 11:44 am in reply to: Title Length #112468
    Tonya
    Member

    You're welcome. Please mark this thread as Resolved.

    Enjoy your day 馃檪


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 10:02 pm in reply to: Widget Ready Home Page Modern Blogger Pro #112307
    Tonya
    Member

    Hi,

    Notice that the function for your new widgets is called: news_home_loop_helper(); However, in the function modernbloggerpro_home_genesis_meta(), it is referencing the wrong function name: add_action( 'genesis_loop', 'modernbloggerpro_home_loop_helper' );

    add_action( 'genesis_meta', 'modern_home_genesis_meta' );
    /**
     * Add widget support for homepage. If no widgets active, display the default loop.
     *
     */
    function modernbloggerpro_home_genesis_meta() {
     
        if ( is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-middle-left' ) || is_active_sidebar( 'home-middle-right' ) || is_active_sidebar( 'home-bottom' ) ) {
         
            remove_action( 'genesis_loop', 'genesis_do_loop' );
            add_action( 'genesis_loop', 'news_home_loop_helper' ); // Changed from modernbloggerpro_home_loop_helper

    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 8:32 pm in reply to: Parallax Pro – header and navigation question #112302
    Tonya
    Member

    Hey Renee,

    A margin of 60px is being applied to the bottom of the Primary Nav Menu. So on the frontpage to make it go away, here's what you want to do in your style.css:

    After line 1039, add the following:

    .parallax-home .nav-primary {
    margin-bottom: 0;
    }

    Cheers!


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 8:05 pm in reply to: Remove Title Page section from Pages #112292
    Tonya
    Member

    Hi,

    The plugin applied the display: none; to the <h1> instead of higher up at <div class="page-title">.

    To remove the Page Titles completely, place the following code into the functions.php file: click here to view the code on GitHub. The titles are retained for posts (i.e. is_single()); otherwise, it returns an empty string.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 8:01 pm in reply to: Parallax Pro – header and navigation question #112288
    Tonya
    Member

    Awesome! You are very welcome. We're all here to help!

    Do me a favor and mark this one Resolved. Cheers 馃檪


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:53 pm in reply to: Title Length #112285
    Tonya
    Member

    Change the title area, which you noted above, from 320px to 400px. This will give you everything on one line. If you want more space, then the next step is to reduce the font size.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:47 pm in reply to: Logo doesn't appear right #112284
    Tonya
    Member

    Hi,

    It's happening on mobile devices as I don't see it on my iPad. Looking at your style.css file, for non-mobile devices you are using the following image: http://www.citymonk.com/wp-content/uploads/2014/06/City-Home-2.png.

    But for mobile devices, you are using image images/[email protected]. Is this image located in your images folder?

    You have a couple of choices here:

    1. Load up the [email protected] image.
    2. Comment out the following lines in your style.css file: lines 1433 to 1443 by doing this:

    /*@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
    	only screen and (-moz-min-device-pixel-ratio: 1.5),
    	only screen and (-o-min-device-pixel-ratio: 3/2),
    	only screen and (min-device-pixel-ratio: 1.5) {
    
    	.header-image .site-header .wrap {
    		background: url(images/[email protected]) no-repeat left;
    		background-size: 320px 164px;
    	}
    
    }*/

    When you do this, we also need to version too so that everyone gets a fresh download of the new changes to their browser:
    1. On line 6 of your style.css, change 2.0.1 to 2.0.2
    2. It may also be in your functions.php file (depending upon how the site is coded). If yes, you'll find define( 'CHILD_THEME_VERSION', '2.0.1' ); Change this to 2.0.2. (Please note, I'm assuming this version is being captured from the stylesheet using a different technique than forcing the text version into it.)


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:27 pm in reply to: Metro Logo Repeating #112282
    Tonya
    Member

    Do me a favor and mark this thread as "Resolved". Cheers.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:25 pm in reply to: Metro Logo Repeating #112281
    Tonya
    Member

    Awesome!! You are very welcome. You can delete that Header plugin too. You don't need it now.

    Cheers,
    Tonya


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:21 pm in reply to: Metro Logo Repeating #112279
    Tonya
    Member

    I apologize, I completely forgot this theme is different. You need to make a change again in the functions.php where you added the above code:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    	'width'           => 400,
    	'height'          => 120,
    	'header-selector' => '#title-area a',
    	'header-text'     => false,
    ) );

    Notice that I changed the 'header-selector' to the proper ID. Give that a Go.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:05 pm in reply to: Parallax Pro – header and navigation question #112277
    Tonya
    Member

    Oh Ms. Renee,

    We've got it now. Ready...?

    Open up the front-page.php file and scroll down to line 45, which should be:
    remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );

    We want to comment this line out by doing the following:
    //remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );

    On the front page, it is removing the primary nav menu. Sorry I completely forgot about this line.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

    June 30, 2014 at 7:01 pm in reply to: Metro Logo Repeating #112276
    Tonya
    Member

    Not a problem at all.

    So let's add the custom header functionality to your child theme. Go into your functions.php and scroll to the bottom. Place this code:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    	'width'           => 400,
    	'height'          => 120,
    	'header-selector' => '.site-title a',
    	'header-text'     => false,
    ) );

    We've set the width and height and will be assigning the image you save in Appearance > Header to the .site-title a element.

    Once you add this code, save the file. Then go to Appearance > Header. Is your logo still there? If no, go ahead and add it.


    Software & Electrical Engineer and Programming Teacher 路 I’m on a mission to help developers be more awesome.
    Find Me: KnowTheCode.io | @hellofromTonya | Profitable WordPress Developer Bootcamp

  • Author
    Posts
Viewing 20 posts - 241 through 260 (of 278 total)
← 1 2 3 … 12 13 14 →
« 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