Make Wordpress Twenty Thirteen Header 100% iPad compatible
In your style.css file search for
@media (max-width: 767px) {
and change the max-width to 768px like this:
@media (max-width: 768px) {
Add this CSS code within this media brace
.site-header { position: relative; background-size: 100% 82% !important; }
The 100% is for the width of the header and the 82% is for the height. Adjust these percentages to suit your template design and test on the iPad
@media (max-width: 767px) {
and change the max-width to 768px like this:
@media (max-width: 768px) {
Add this CSS code within this media brace
.site-header { position: relative; background-size: 100% 82% !important; }
The 100% is for the width of the header and the 82% is for the height. Adjust these percentages to suit your template design and test on the iPad
Comments
Post a Comment