• 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

JanHoek

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 19 posts - 181 through 199 (of 199 total)
← 1 2 3 … 8 9 10
  • Author
    Posts
  • June 7, 2014 at 2:47 pm in reply to: Remove site tagline Minimum Pro #108470
    JanHoek
    Participant

    First change the top margin from your site-inner

    .site-inner {
    background-color: #fff;
    clear: both;
    padding-top: 80px;

    And for your Header, you have to change the .header-image .site-title css. This depends on the size of your logo. But something like;

    .header-image .site-title a {
    height: 80px;
    display: block;
    margin-top: 20px;
    text-indent: -9999px;
    max-width: 320px; 

    Good luck.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 7, 2014 at 2:38 pm in reply to: getting rid of default list items Parallax Pro Pricing Table #108469
    JanHoek
    Participant
    div.pricing-table ul > li {
    list-style-type: none;

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 7, 2014 at 2:29 pm in reply to: Can't change "continue reading" text #108467
    JanHoek
    Participant

    If you use the Excerpts, try this instead of the one you use

    // Add Read More Link to Excerpts
    add_filter('excerpt_more', 'get_read_more_link');
    add_filter( 'the_content_more_link', 'get_read_more_link' );
    function get_read_more_link() {
       return '...&nbsp;<a href="' . get_permalink() . '">[Read&nbsp;More]</a>';
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 2, 2014 at 10:28 am in reply to: centering subnav menu #107844
    JanHoek
    Participant

    Remove all the CSS you added, start with the de default .genesis-nav-menu styles.

    And just edit these two;

    .genesis-nav-menu {
    	clear: both;
    	color: #999;
    	font-family: Lato, sans-serif;
    	line-height: 1.5;
    	width: 100%;
    	font-size: 16px;
    	font-size: 1.6rem;
    	text-align: center;
    }
    
    .genesis-nav-menu .menu-item {
    	display: inline-block;
    	text-align: center;
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 30, 2014 at 12:23 am in reply to: MetroPro search bar in pri-nav #107427
    JanHoek
    Participant

    The gray "border" is coming from the background-image

    .search-form input[type="search"] {
    	background: url(images/search.png) no-repeat 15px 16px;
    	padding: 16px 16px 16px 44px;
    	border: 0;
    }

    and this style

    /* Forms
    --------------------------------------------- */

    input,
    select,
    textarea {
    	background-color: #f5f5f5;
    	border: 1px solid #ddd;
    	box-shadow: 0 0 5px #ddd inset;
    	color: #999;
    	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    	font-size: 14px;
    	padding: 16px;
    	width: 100%;
    }

    To change the text you can put this in your functions.php

    //* Customize search form input box text
    add_filter( 'genesis_search_text', 'sp_search_text' );
    function sp_search_text( $text ) {
    	return esc_attr( 'Search my blog...' );
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 30, 2014 at 12:02 am in reply to: Add new widget area under menu #107423
    JanHoek
    Participant

    Did not refresh my browser before I posted a answer. You Already got some help I see. Sorry.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 29, 2014 at 11:42 pm in reply to: Adding button to Nav Menu #107420
    JanHoek
    Participant

    Glad I Could Help


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 26, 2014 at 3:11 am in reply to: How to change individual page background colour #106792
    JanHoek
    Participant

    I see the line

    body.page-id-707 {
    background: #000;
    }

    but 707 is not an ID number on your website.

    I tried ID 65 (your service page ) and worked perfect

    body.page-id-65 {
    background: #333;
    }


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 25, 2014 at 2:27 pm in reply to: How to change individual page background colour #106706
    JanHoek
    Participant

    You can do this with some extra style in your CSS:

    Example

    body.page-id-11 {
            background: #000;
    }
    
    body.page-id-22 {
            background-image: url("background.jpg");
    }

    Change the page ID number with the page number you like to change. Preview the page in the dashboard. Then you`ll see the ID in the url


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 25, 2014 at 2:15 pm in reply to: Sample theme: Social icons at entry footer #106702
    JanHoek
    Participant

    Can you post your url of your site please? I want to take a look at your homepage before I try/post something.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 25, 2014 at 2:03 pm in reply to: Generate Child Theme – Sidebar Issues #106700
    JanHoek
    Participant

    Please post your URL Mike, so we can take a look.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 25, 2014 at 2:00 pm in reply to: Right Spacing on Metro Pro Menu #106699
    JanHoek
    Participant
    .genesis-nav-menu .menu-item {
    	display: inline-block;
    	text-align: center;
    	float: right;
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 24, 2014 at 2:17 am in reply to: Custom Body class when background is active #106575
    JanHoek
    Participant

    Thanks Sridhar, this is exactly what I needed. The simple things are hardest to find.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 23, 2014 at 4:06 pm in reply to: Website fonts/display #106539
    JanHoek
    Participant

    Sometimes browsers not rendering the 62.5% font-size correctly, used in Genesis Themes. Look at the post from Surfire http://surefirewebservices.com/development/genesis-framework/genesis-rem-chrome-font-size-bug


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 23, 2014 at 3:59 pm in reply to: Website fonts/display #106536
    JanHoek
    Participant

    Do you use Chrome and Google fonts?


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 23, 2014 at 3:27 pm in reply to: Adding button to Nav Menu #106531
    JanHoek
    Participant

    You can give Contact a custom Class in your Dashboard-Appearance -Menu and than style it in your style.css If you make the "button" much bigger than you probably need to do some extra styling in your navigation.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 22, 2014 at 3:02 pm in reply to: Sample theme: Social icons at entry footer #106387
    JanHoek
    Participant

    Take a look at this post from Greg. http://gregrickaby.com/add-social-media-icons-to-genesis-without-a-plugin/

    Follow the instructions and replace if ( is_single with if ( is_home or if ( is_front_page on line 19


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 1, 2014 at 5:23 am in reply to: Generate theme: Front page shows both the featured image and the in-post image #103171
    JanHoek
    Participant

    Try to put this in your functions.php

    add_filter('the_content','image_content_filter',11);
     
    function image_content_filter($content){
     
        if (is_home() || is_front_page()){
          $content = preg_replace("/<img[^>]+\>/i", "", $content);
        }
     
        return $content;
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    May 1, 2014 at 5:01 am in reply to: Three column sub-menu #103170
    JanHoek
    Participant

    Easiest way to do this is to use the Ubermenu plugin. They also got a tutorial for Genesis Theme Integration.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

  • Author
    Posts
Viewing 19 posts - 181 through 199 (of 199 total)
← 1 2 3 … 8 9 10
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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