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!
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
You can close this thread.