• 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

tussle

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 - 1 through 20 (of 32 total)
1 2 →
  • Author
    Posts
  • February 11, 2016 at 1:18 pm in reply to: css injected but not on WP page #178816
    tussle
    Member

    Thanks Chris.

    I dug a little deeper based on your suggestion, part of it is the schema checkbox with the ALL IN ONE SEO plugin. Activating causes more errors that W3 picks up but Google does not.
    https://wordpress.org/support/topic/invalid-markup-validation-part-1

    I checked the end p tags, on some pages but not others, must be the CSS Override plugin - will check that too.

    If I run into more issues I'll email and use your service (prob, 15 min increment as posted).

    Thanks a lot.

    February 11, 2016 at 8:49 am in reply to: css injected but not on WP page #178787
    tussle
    Member

    Thank you for the help Chris.
    It's the "aside" element that is being injected as well, I don't have anything in the WP page that uses the aside class.

    le></main><aside class="sidebar sidebar-primary widget-area" role="complementary" aria-label="Primary Sidebar" itemscope itemtype="http://schema.org/WPSideBar"><secti

    I'm surprised Genesis inserts script, it's really buggering the css validation.

    There is also the closed </p> tag that is handing.

    Is there a way to remove these scripts?
    Thanks.

    September 30, 2015 at 12:54 pm in reply to: Content Grid Layout on Sub Page? #167068
    tussle
    Member

    Great.

    If you need styling for the Blog page only, see here:
    http://wpsites.net/wordpress-themes/second-style-sheet-theme/

    The functions code as listed there is:
    function blog_style_sheet() {
    if (is_home() ) {
    wp_enqueue_style( 'blog-styling', get_stylesheet_directory_uri() . '/css/blog.css' );
    }}
    add_action('wp_enqueue_scripts', 'blog_style_sheet');

    September 30, 2015 at 12:52 pm in reply to: Alternate .css sheet for Blog Page, not catching #167067
    tussle
    Member

    Found the correction. Blog is "home" for the Genesis Sample theme.

    Example is on WPsites post here:
    http://wpsites.net/wordpress-themes/second-style-sheet-theme/

    Create a new .css sheet, upload to the child theme directory then add this code to functions.php.

    function blog_style_sheet() {
    if (is_home() ) {
    wp_enqueue_style( 'blog-styling', get_stylesheet_directory_uri() . '/blog.css' );
    }}
    add_action('wp_enqueue_scripts', 'blog_style_sheet');
    
    September 30, 2015 at 7:44 am in reply to: Content Grid Layout on Sub Page? #167040
    tussle
    Member

    Would this help, from Bill Erickson. Comments section has more advice.

    http://www.billerickson.net/a-better-and-easier-grid-loop/

    September 24, 2015 at 8:11 am in reply to: Dropdown menu hard to access on mobile – Genesis Sample #166558
    tussle
    Member

    Hi
    Your ids are correct - thanks, but the code on that page didn't seem to work.

    I did however find this from Ozzy R,
    http://ozzyrodriguez.com/tutorials/genesis/genesis-responsive-menu-2-0/

    Worked without any customizing for primary or header menu.

    If anyone uses it just be sure to change prefix for the theme name in functions.php
    (example: genesis sample theme prefix is genesis_sample)

    Thanks.

    September 21, 2015 at 7:22 pm in reply to: Dropdown menu hard to access on mobile – Genesis Sample #166280
    tussle
    Member

    Thanks very much Davinder, I'll try those out.

    September 21, 2015 at 6:34 am in reply to: Dropdown menu hard to access on mobile – Genesis Sample #166201
    tussle
    Member

    Thanks Davinder

    I read through - it says : for the primary menu use: .menu-primary

    I know for the id for secondary but do you know the id for custom menu? Tried .genesis-nav, it didn't work.

    Thanks.

    September 10, 2015 at 1:47 pm in reply to: Template choices for static page #165152
    tussle
    Member

    You can try this, very flexible design:

    Custom page

    Also can be used an landing page.

    September 10, 2015 at 1:38 pm in reply to: Need new solution for mobile responsive tables #165151
    tussle
    Member

    Hi
    I would suggest using ungrid - you can find it . here

    Sridhar has a good tutorial here.

    I have used it and it works well, is very responsive.

    You can tweak it a bit to have various column widths based on % for even more flexibility.

    See if that helps.

    or you can go to codepen.io and look for a responsive table there.

    September 7, 2015 at 7:07 am in reply to: align widgets side by side – mobile #164828
    tussle
    Member

    Tom, thanks very much! Worked perfectly and looks great.

    (last month referred a theme developer and a SP poster to genesisthemes.ca - really good resource. Thx)

    September 6, 2015 at 3:19 pm in reply to: Where to put this .js snippet #164786
    tussle
    Member

    I thought I said a 'thank you' for this code - looks like the post didn't get published at that time, so thanks for the input. Appreciated.

    August 26, 2015 at 11:02 am in reply to: Advice on themes #163585
    tussle
    Member

    You could use an existing theme and edit with these tutorials:
    https://sridharkatakam.com/genesis-page-template-displaying-posts-masonry/

    Does require subscription but might be same price as buying a theme. Depends on your needs.

    Here's a free tutorial on how it's done
    https://www.wpstud.io/masonry-and-infinite-scroll-with-genesis/

    Here's a collection of masonry.
    https://genesisthemes.ca/theme_feature/masonry/

    August 25, 2015 at 2:09 pm in reply to: Change content width on blog page #163474
    tussle
    Member

    Also this changes the width of sidebar but mobile still a problem.

    .site-header .widget-area {
    width: 600px;
    }

    August 25, 2015 at 2:02 pm in reply to: Change content width on blog page #163472
    tussle
    Member

    Hi
    On the content section and sidebar section this is what I changed to adjust width:

    .sidebar-primary {
    width: 260px;
    }

    .content {
    width: 920px;
    }

    Was advised this was correct.

    Same problem on mobile - the sidebar keeps it's vertical shape and just goes under the content section.
    I am using genesis sample.

    I've asked how to remedy the mobile issue in the forum, no takers. Maybe more people have this issue. If so an email to studiopress might be required to see if it's a core issue.

    August 14, 2015 at 9:25 am in reply to: load script only on page – small error #162374
    tussle
    Member

    Thank you. Worked with:

    //* Enqueue Term rotating script
    add_action( 'wp_enqueue_scripts', 'enqueue_term_rotator' );
    function enqueue_term_rotator()  {
    if ( is_page('element') )
    	wp_enqueue_script( 'term-rotator',  get_stylesheet_directory_uri() . '/js/term-rotator.js', array( 'jquery' ), '1.0.0', true );
    
    }
    

    Can I suggest a donate button on your site (second time helped).

    Thanks.

    August 11, 2015 at 9:17 am in reply to: changed content/sidebar width – is this correct for mobile?? #162032
    tussle
    Member

    Here's the solution to 1.

    .content {
    float: right;
    width: 840px;
    }

    .site-header .widget-area {
    width: 600px;
    }

    Thanks to Genesis coder for that one.

    August 10, 2015 at 9:57 am in reply to: changed content/sidebar width – is this correct for mobile?? #161941
    tussle
    Member

    Any experts for mobile code able to advise why the primary sidebar is extending underneath the content area vertically rather than horizontally when reducing screen size?

    Using the Genesis Sample Theme - - it only happens when changing primary sidebar width/size., etc.

    So far I tried:

    @media
    only screen and (max-width: 800px) {

    .sidebar-primary,
    .title-area {
    width: 100%;
    }
    }

    Thanks!

    August 7, 2015 at 8:55 am in reply to: changed content/sidebar width – is this correct for mobile?? #161698
    tussle
    Member

    Thanks.
    I was most interested on issue 1, if the the simple code is correct. It works but curious if any changes to php should be made or register a new layout is needed - many tutorials advise on other ways so wondering if this is correct. I need it only for 1 page.

    August 6, 2015 at 3:36 pm in reply to: changed content/sidebar width – is this correct for mobile?? #161643
    tussle
    Member

    Thanks. Very simply the right sidebar (containing enews extended) on a content/sidebar page scrolls under the content are and stays vertical - it doesn't switch to horizontal layout.

    Is the css above correct for the non-mobile site?

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 32 total)
1 2 →

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