Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #469422

    I need some help with the header on my iPad. I would like to center the logo on the iPad in portrait mode and have a black background for the header instead of it being transparent in portrait mode only. Can you please provide me some quick css to accomplish this? Thanks!

    #469829

    Hi djshortkut!

    use this for your logo on iPad portrait mode:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .logo {
    left: 250px;
    }}
    

    For your header:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    div#header_main {
    background-color: black;
    }}
    

    Cheers!
    Andy

    #470471

    You can close this thread.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Header on iPad’ is closed to new replies.