[SOLVED] Mobile Custom Header Resizing
-
I am posting this because I have searched relentlessly for a solution to this problem and have figured it out myself. I am working on .evolve on a clients website, and I created a custom header image, that has their logo in the center, however whenever you view the website from a mobile device, the entire page resizes, spare the custom header, leaving you with dead space to the right of every page and a strange third of the header I created.
the website is reauxchiropractic.com
To fix this, navigate yourself to:
<b>Appearance > Editor > custom-css.php</b>and run a search for this style class:
.custom-header
The width, for me, was 980px, but you can change that value to 100%, so that it fills the parent container entirely. Your code should have looked like this:
.custom-header {padding:40px 20px 5px 20px!important;width: 980px;...;}';
But now looks like this
.custom-header {padding:40px 20px 5px 20px!important;width: 100%...;}';
I hope I helped anybody, because I struggled with this for a while
- The topic ‘[SOLVED] Mobile Custom Header Resizing’ is closed to new replies.