Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #791335

    Hey guys,

    Two things!

    01. I have a text box that I want to move further away from the logo and hamburger. I believe I had CSS to do this but it seems to not work anymore, after I placed the text box inside a color section. Can you help with this?

    02. The logo on my mobile homepage is huge. Is there CSS to shrinking this?

    website: http://www.ccyran.com
    password in private content

    Thanks!
    Chris

    #791342

    Hey ccyran,

    For #1 do you want to keep the large space below the text?

    Best regards,
    Jordan Shannon

    #791345

    Hey Jordan,

    Yes!

    #791347

    Hi,
    Add the following to quick css 

    @media only screen and (max-width: 767px){</span>
    .post-entry.post-entry-type-page.post-entry-2890{
    margin-top:50px!important;
    }
    }
    
    @media only screen and (max-width: 767px){</span>
    .responsive .logo img {
    max-height: 40px;
    }
    }

    You can adjust the max height to adjust logo size as the width is set to auto.

    Best regards,
    Jordan Shannon

    #791350

    Hey Jordan,

    I added both in and didn’t see any changes. :/

    #791358

    Hi,

    Sorry it was a formatting error. Try the update below.

    @media only screen and (max-width: 767px){
    .post-entry.post-entry-type-page.post-entry-2890{
    margin-top:50px!important;
    }
    }
    
    @media only screen and (max-width: 767px){
    .responsive .logo img {
    max-height: 40px;
    }
    }

    Best regards,
    Jordan Shannon

    #791364

    This worked!

    Thank you!

    #791369

    Hi,

    Awesome! If you need additional help, please don’t hesitate to contact us here in the forums.

    Best regards,
    Jordan Shannon

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Move text down only in mobile’ is closed to new replies.