• 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

Minimum Pro Responsive ipad Portrait

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

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Minimum Pro Responsive ipad Portrait

This topic is: not resolved

Tagged: modern portfolio, responsive

  • This topic has 8 replies, 4 voices, and was last updated 11 years, 1 month ago by magzparmenter.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • September 22, 2014 at 9:25 am #125320
    rsmithsd
    Member

    The front page background image looks good on my iMac, iPhone and iPad in
    landscape. However, the iPad in portrait shrinks the window and cuts off
    the background image. This happens no matter which image I use. I
    understand the image window is realigning itself to show the background
    image as it is responsive. My question though relates to the Minimum Pro
    demo (http://demo.studiopress.com/minimum/) where the window in portrait on the iPad does not shrink and allows
    for the image to display properly. Is there a way that I can force the
    window to remain a certain size in portrait on the iPad? Any help is
    greatly appreciated. Thank you!

    URL

    http://cityonahillsandiego.com

    Child Theme

    Minimum

    http://Cityonahillsandiego.com
    September 22, 2014 at 12:09 pm #125340
    jbergen
    Member

    Hi,

    I see your problem. It's happening because there is a top margin set on the site tagline. All you have to do is remove that CSS rule in your style.css file, line 1767.

    Here's what it looks like now:

    .minimum .site-tagline {
    	margin-top: 200px;
    	margin-top: 20rem;
    }

    When I removed it, the site looked good at iPad portrait screen widths.

    I hope that helps!
    Jamie


    Jamie @ Ladebug Studios

    September 22, 2014 at 1:45 pm #125352
    rsmithsd
    Member

    So I did what you said it also changed the iphone height for some reason. But then I figured it out. I put the rem at 40 at the ipdad resolution and then added the original code on the smaller iphone resolution keeping it the same. That allowed me to change both the ipad and iphone independantly. Works great! Thank you for pointing me in the right direction.

    September 22, 2014 at 2:56 pm #125361
    jbergen
    Member

    Great! I'm glad you got it working.
    Jamie


    Jamie @ Ladebug Studios

    September 30, 2014 at 5:41 pm #126361
    sparkgaia
    Member

    Hi there,
    I'm having the same issue - rsmithsd, could you please paste the exact code that you changed? I dont' follow how you changed the ipad resolution and the iphone resolution independently.

    Thanks!
    Cara

    September 30, 2014 at 7:12 pm #126373
    rsmithsd
    Member

    Hi Cara, to adjust the window height change the margin-top: (X)rem higher or lower based on the focus of your photo. I have the iPad set to 50rem and iPhone set to 20rem. Let me know if you have any questions.

    Here's the code:

    iPad - 768px

    .minimum .site-tagline {
    margin-top: 200px;
    margin-top: 50rem;

    iphone


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

    .header-image .site-header .title-area .site-title a {
    background-size: contain !important;
    }

    .minimum .site-tagline {
    margin-top: 200px;
    margin-top: 20rem;
    }

    }

    October 8, 2014 at 12:53 pm #127140
    sparkgaia
    Member

    Thanks Rsmith

    just to clarify, i paste it all exactly as you have laid it out in my style.css file, correct? I want to make sure I understand whether there are different locations for the codes for iPad vs iPhone etc, right?

    Thanks,
    Cara

    November 1, 2014 at 11:18 pm #130142
    rsmithsd
    Member

    Sorry this is late. Hopefully you've already made the changes.

    //iPad (Do not included this text)


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

    .site-header {
    padding-bottom: 10px;
    padding-bottom: 1rem;
    }

    .title-area {
    padding-bottom: 6px;
    padding-bottom: 0.6rem;
    }

    .minimum .site-tagline {
    margin-top: 200px;
    margin-top: 50rem;
    }

    .genesis-nav-menu a {
    padding: 20px 10px;
    padding: 2rem 1rem;
    }

    .site-footer .nav-secondary a {
    margin: 0 10px;
    margin: 0 1rem;
    }

    .responsive-menu {
    display: none;
    }

    #responsive-menu-icon {
    display: block;
    }

    .home-featured .simple-social-icons ul li a {
    font-size: 36px !important;
    font-size: 3.6rem !important;
    padding: 20px !important;
    padding: 2rem !important;
    }

    .genesis-grid-even,
    .genesis-grid-odd,
    .post-type-archive-portfolio .entry {
    width: 100%;
    }

    .post-type-archive-portfolio .entry:nth-of-type(2n),
    .post-type-archive-portfolio .entry:nth-of-type(2n+1) {
    float: none;
    padding: 0;
    }

    .five-sixths,
    .four-sixths,
    .one-fourth,
    .one-half,
    .one-sixth,
    .one-third,
    .three-fourths,
    .three-sixths,
    .two-fourths,
    .two-sixths,
    .two-thirds {
    margin: 0;
    width: 100%;
    }

    }

    //iPhone (Do not include this text)


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

    .header-image .site-header .title-area .site-title a {
    background-size: contain !important;
    }

    .minimum .site-tagline {
    margin-top: 200px;
    margin-top: 20rem;
    }

    November 2, 2014 at 4:15 am #130157
    magzparmenter
    Member

    Hi
    I'm hoping you might be able to help me too.
    I'm on Modern Portfolio theme and having trouble with my logo image cutting off and not re-sizing on iPad portrait and iPhone. Also, the menu at the top is not displaying properly on iPhone.

    I am a complete newbie at working with responsive themes, so really appreciate if you could walk me through the actual code I need and where.

    Also, if you get a chance, could you look at my post about column classes, I have been struggling with it for the last day and a half.

    My site is http://chasingholy.co.uk

    Thanks so much!
    Magz

  • Author
    Posts
Viewing 9 posts - 1 through 9 (of 9 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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