Reply To: Mobile Responsive

Homepage Community Forums Adapt Theme Support Mobile Responsive Reply To: Mobile Responsive

#1054
Wes
Moderator

    For the Primary menu issue, you have the height set at 42px, and when the site resizes it stays at 42px which is why it doesn’t show all of the menu links. So if you add a new height, ( or height: auto; ) on line 2409, it will make up for it when viewed at that browser size.

    The thumbnails aren’t responding because the width on .home-feature-1 is 960px on line 643. When the browser is resized there should be a different width, either a percentage or “width: auto;” and it should work fine. You could try changing the width on 643 to auto, or you can create a new width that references .home-feature-1 in the responsive section of your css file.

    I will be adding an update to this theme, as well as all of my other themes to look more like this – http://demo.appfinite.com/optimal/portfolio/ …..notice the Title and content. To do this, just add the following to the top of your page_portfolio.php file (right under – // Template Name: Portfolio) –

    // Adds Page Title and Content
    add_action('genesis_before_loop', 'genesis_do_post_title');
    add_action('genesis_before_loop', 'genesis_do_post_content');
    
    /** Remove Edit Link */
    add_filter( 'edit_post_link', '__return_false' );

    Let me know if that works