• 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 20 posts - 61 through 80 (of 199 total)
← 1 2 3 4 5 … 8 9 10 →
  • Author
    Posts
  • August 9, 2014 at 1:54 pm in reply to: vertical menu #117979
    JanHoek
    Participant

    Yes you can make the menu vertical The sixteen nine menu is the header-nav with vertical css. To make did responsive/ compatible with your site is a bit more work.


    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.

    August 9, 2014 at 1:44 pm in reply to: Arranging Widget Area order #117976
    JanHoek
    Participant

    Your childthemes name


    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.

    August 9, 2014 at 1:23 pm in reply to: Epik Theme/Double Images ? #117968
    JanHoek
    Participant

    Look at this threads http://appfinite.com/forum/epik-theme-support/ Sure there is the answer,


    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.

    August 9, 2014 at 1:20 pm in reply to: Read More tag not working on iPad and iPhone #117966
    JanHoek
    Participant

    Nothing has changed but I think there is a little error in it. Or a conflict with a plugin. If you want you can send me your functions.php and I can take a look. Mail is on my site.


    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.

    August 9, 2014 at 1:07 pm in reply to: Arranging Widget Area order #117962
    JanHoek
    Participant

    Try to register them this way

    genesis_register_widget_area ( array(
    	'id' => 'widget_before_content',
    	'name' => __( 'Homepage Below Menu', 'childtheme' ),
    	'description' =>  __( 'This is below the bottom menu of the homepage.', 'childtheme' ),
    ) );
    
    add_action( 'genesis_after_header', 'widget_before_content' , 3);
    function widget_before_content() {
    		genesis_widget_area( 'widget_before_content', array(
    		'before' => '<div class="widget_before_content">',
    		'after'  => '</div>',
    		) );
    }

    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.

    August 9, 2014 at 12:57 pm in reply to: wishing a hover color on top menu titles #117959
    JanHoek
    Participant

    For the top link

    change this:

    #subnav li a:hover,
    #subnav li a:active,
    #subnav .current_page_item a,
    #subnav .current-cat a,
    #subnav .current-menu-item a {
    
    }

    with this

    #subnav li a:hover,
    #subnav li a:active,
    #subnav .current_page_item a,
    #subnav .current-cat a,
    #subnav .current-menu-item a {
         color: #f16124;
    }

    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.

    August 9, 2014 at 12:49 pm in reply to: Arranging Widget Area order #117954
    JanHoek
    Participant

    I think the nav is ok. Wich code thit you use to register and show the widget-area?


    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.

    August 9, 2014 at 12:43 pm in reply to: Positioning content towards the top of HTML code? #117950
    JanHoek
    Participant

    Yes, this is done by default and done with the advice of Yoast


    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.

    August 9, 2014 at 12:41 pm in reply to: Magazine Pro- Increase width of menu border lines #117947
    JanHoek
    Participant

    Open your style.css and find

    .site-header .wrap {
    border-bottom: 2px solid #222;
    padding: 30px 0;
    }
    

    change the border-bottom pixels to whatever you want (this is under your title)

    Then look for

    .nav-secondary .wrap {
    border-bottom: 2px solid #222;
    }

    and do the same.

    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.

    August 9, 2014 at 12:37 pm in reply to: Arranging Widget Area order #117946
    JanHoek
    Participant

    Use number order like

    add_action( 'genesis_after_header', 'your_widget', 3 );
    
    add_action( 'genesis_after_header', 'your_widget', 6 );
    
    add_action( 'genesis_after_header', 'your_widget', 8 );

    also place them in order in your functions.php


    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.

    August 9, 2014 at 12:33 pm in reply to: Read More tag not working on iPad and iPhone #117945
    JanHoek
    Participant

    I think you have to check your custom read-more code in the functions.php


    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.

    August 9, 2014 at 12:07 pm in reply to: Widgetized logo not appearing on 404 page #117941
    JanHoek
    Participant

    I see the logo so I assume this is solved?


    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.

    August 9, 2014 at 12:00 pm in reply to: Google Map with Search Filters? #117938
    JanHoek
    Participant

    Did you search google? https://www.google.com/search?q=wordpress+add+marker+to+maps&oq=wordpress+add+marker+to+maps&aqs=chrome..69i57.9062j0j9&sourceid=chrome&es_sm=91&ie=UTF-8#q=wordpress+add+marker+filter+to+maps&spell=1


    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.

    August 9, 2014 at 11:52 am in reply to: What is the Custom Post Class field? #117936
    JanHoek
    Participant

    You can set a custom post class to style some posts differently than others. (same as the custom body class but for content and not the whole page.


    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.

    August 9, 2014 at 11:39 am in reply to: Graphics and Customization #117933
    JanHoek
    Participant

    You have make a negative margin to your social icons. Can you please provide us with an url so we can help you better. Thanks.


    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.

    August 9, 2014 at 11:37 am in reply to: Setting Featured image on homepage for Minimum Pro #117932
    JanHoek
    Participant

    Show your code and url so we can help you better.


    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.

    August 9, 2014 at 11:36 am in reply to: Streamline Pro Email optin #117930
    JanHoek
    Participant

    http://davidboozer.com/configure-aweber-form-genesis-enews-extended-plug/ or just mail Brandon. He can help you for sure.


    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.

    August 9, 2014 at 11:21 am in reply to: Menu item responsiveness fixes: #117929
    JanHoek
    Participant

    Is this solved? Looks pretty good to me.


    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.

    August 9, 2014 at 11:18 am in reply to: enterprise pro home bottom widgets X 4 instead of 3 #117928
    JanHoek
    Participant

    Can you please provide us with an url so we can help you better. Thanks.


    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.

    August 9, 2014 at 11:14 am in reply to: Centric archive intro text not in title area #117927
    JanHoek
    Participant

    Can you please provide us with an url so we can help you better. Thanks.


    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 20 posts - 61 through 80 (of 199 total)
← 1 2 3 4 5 … 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