• 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

News Pro theme: Please Help

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 › Design Tips and Tricks › News Pro theme: Please Help

This topic is: not resolved

Tagged: css customization, news pro theme

  • This topic has 8 replies, 2 voices, and was last updated 12 years, 3 months ago by Davinder Singh Kainth.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • March 6, 2014 at 6:19 am #93643
    linotek
    Member

    Hi,

    Please help me to setup News Pro theme properly on http://www.tiploot.com

    1. Remove free space (background above header) above site title
    2. Remove 'Filed Under:' and 'Tagged With' options between posts
    3. Remove black line above Sidebar title
    4. Remove arrow '>' just before titles under 'Recent posts'

    I'm new to css design so it's almost impossible to me to adjust above settings.

    http://www.tiploot.com/
    March 6, 2014 at 8:48 am #93659
    Davinder Singh Kainth
    Member

    1. Change 40px value in following code in style.css file

    /*
    Site Header
    ---------------------------------------------------------------------------------------------------- */
    
    .site-header {
    	background-color: #fff;
    }
    
    .site-header .wrap {
    	padding: 40px 0;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 8:49 am #93660
    Davinder Singh Kainth
    Member

    2. To remove post meta and post info from homepage, add following code to functions.php file

    //* Remove the post info & post meta (requires HTML5 theme support)
    add_action('template_redirect', 'child_conditional_actions'); 
    function child_conditional_actions() { 
    if( !is_single() ) { 
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    }}  

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 8:50 am #93661
    Davinder Singh Kainth
    Member

    3. Remove border-top in following code in style.css file

    .widget-title {
    	border-top: 3px solid #000;
    	border-bottom: 1px solid #e3e3e3;
    	color: #000;
    	font-size: 14px;
    	font-weight: 400;
    	margin-bottom: 24px;
    	padding: 16px;
    	text-align: center;
    	text-transform: uppercase;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 8:54 am #93663
    Davinder Singh Kainth
    Member

    4. Remove content: line in following code in style.css file

    .after-entry li::before,
    .news-pro-home .content li::before,
    .sidebar li::before {
    	content: "\203a";
    	font-size: 12px;
    	margin: 0 10px;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 10:52 am #93681
    linotek
    Member

    Hi Davinder Singh Kainth,

    Thank you very much for your great help.

    May you please help me to properly configure following two issues:

    5. Change Post title font to : Oswald, sans-serif; with size: 32px and line-height: 43px
    6. Change Content font to: Georgia, 'Times New Roman', sans-serif; with size: 16px and line-height: 26px
    7. Remove all links after Copyright, under footer

    I have changed fonts using post title & entry title but it becomes too small, i don't know why this happened.

    Please help.

    March 6, 2014 at 8:44 pm #93791
    Davinder Singh Kainth
    Member

    For post title format, change following code in style.css file

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    	color: #000;
    	font-weight: 700;
    	line-height: 1.2;
    	margin: 0 0 16px;
    }

    to

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    	 font-family: Georgia, ‘Times New Roman’, sans-serif; 
    	 font-size: 16px;
            color: #000;
    	font-weight: 700;
    	line-height: 26px;
    	margin: 0 0 16px;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 8:46 pm #93792
    Davinder Singh Kainth
    Member

    For post content font, change following code

    body {
    	background-color: #f6f5f2;
    	color: #666;
    	font-family: 'Raleway', sans-serif;
    	font-size: 16px;
    	font-weight: 400;
    	line-height: 1.625;
    }

    to

    body {
    	background-color: #f6f5f2;
    	color: #666;
    	font-family: 'Oswald', sans-serif;
    	font-size: 32px;
    	font-weight: 400;
    	line-height: 43px;
    }

    Also, go to functions.php file and in code for Google Fonts, replace Raleway with Oswald


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 6, 2014 at 8:48 pm #93793
    Davinder Singh Kainth
    Member

    To modify footer text use following code in functions.php file

    //* Change the footer text - basicwp.com
    add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
    function sp_footer_creds_filter( $creds ) {
    	$creds = '[footer_copyright]';
    	return $creds;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

  • Author
    Posts
Viewing 9 posts - 1 through 9 (of 9 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

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