• 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

jufo

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 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • July 3, 2015 at 9:51 am in reply to: Front Page SEO (Yoast) #158300
    jufo
    Member

    Nevermind, found some articles on the web.

    Do Genesis Users Need To Install A SEO Plugin


    http://91digital.net/blog/genesis-seo-vs-yoast-seo/

    July 3, 2015 at 9:43 am in reply to: Front Page SEO (Yoast) #158299
    jufo
    Member

    I am very keen on understanding the difference between just letting Genesis go to work at SEO and using the yoast plugin. I am not sure whether I should install Yoast or not, does it make a lot of sense?
    I'd be grateful for any tips here, thanks.

    June 18, 2015 at 11:58 am in reply to: Editing "Leave a Reply" in Magazine Pro #156681
    jufo
    Member

    That did the trick for me, but be sure to past the raw code, else your site will vanish like mine did and you will have to access the functions.php by ftp to fix it again.

    June 13, 2015 at 11:36 am in reply to: Navigation to the right of logo #156107
    jufo
    Member

    What worked for me is this

    //* move nav to header
    remove_action( 'genesis_after_header','genesis_do_nav' ) ;
    add_action( 'genesis_header_right','genesis_do_nav' );
    add_theme_support( 'genesis-structural-wraps', array( 'header', 'menu-secondary', 'footer-widgets', 'footer' ) );//menu-primary is removed

    June 13, 2015 at 7:28 am in reply to: Navigation to the right of logo #156092
    jufo
    Member

    That doesn't work for me, nothing appears there.

    It might have to do with the multilingual plugin I am using, polylang, not sure.

    Alternatively, I tried Brain Gardner's solution http://briangardner.com/reposition-primary-navigation/

    and added
    //* Remove the header right widget area
    unregister_sidebar( 'header-right' );

    and then
    //* Reposition the primary navigation menu
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_header', 'genesis_do_nav', 12 );

    but unfortunately that didn't change anything for me either.

    June 13, 2015 at 7:21 am in reply to: Featured image not appearing in single posts #156090
    jufo
    Member

    Thank you, it solved my problem!

    April 10, 2015 at 2:33 pm in reply to: Sidebar Widget Linking Problem #147402
    jufo
    Member

    Sorry, like this <a href="http://google.com" target="_blank">Google</a>

    April 10, 2015 at 2:32 pm in reply to: Sidebar Widget Linking Problem #147401
    jufo
    Member

    He meant that you should post the code you inserted in the widget. The a tag is the link. It should look something like this:

    Google

    April 6, 2015 at 2:49 pm in reply to: Sidebar Widget Linking Problem #146848
    jufo
    Member

    hi Somelad

    I found the problem, thanks!

    April 6, 2015 at 2:33 am in reply to: Sidebar Widget Linking Problem #146780
    jufo
    Member

    I still haven't been able to resolve this problem, any advice on this?

    April 3, 2015 at 5:08 am in reply to: Sidebar Widget Linking Problem #146539
    jufo
    Member

    Hi

    I am also trying to place a link in a widget, like this

    Google

    But if I click on the link, I get a 404 page and see that the URL of this page is like this:
    http://www.mysite.com/http:/www.google.com

    I really don't have a clue why this is.....

    I am using the altitude theme 1.0.0

    March 22, 2015 at 2:26 pm in reply to: Altitude Theme – Transparency of home page main image #145225
    jufo
    Member

    Thanks, yes it worked.

    For this kind of gradient, there are actually four different numbers in each of the six different lines you have to change. I changes them to 0.1, 0.2, 0.4 and 0.7 (in bold below). The lines all start with 'background: ....'.

    I changed mine to this and it is much better:

    .image-section {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.4) 80%, rgba(0,0,0,0.7) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(30%,rgba(0,0,0,0.2)), color-stop(80%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0.7)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#e6000000',GradientType=0 );
    display: table;
    overflow: hidden;
    table-layout: fixed;
    width: 100%;
    }

    Good luck.

  • Author
    Posts
Viewing 12 posts - 1 through 12 (of 12 total)

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