Reply To: Header not displaying all content on iPhone

#1591
livemesh
Keymaster

Hi,

You can insert the following code in custom css tab of theme options panel, which will work fine for all resolutions. Only change this will do is increasing the width of the blockquote area.

#team-info-header blockquote {
left: 10%;
width: 80%;
}

But if you want to do the change for mobile resolution only then, you can insert the following code in the custom css tab.

@media only screen and (max-width: 767px) {
#team-info-header blockquote {left: 10%; width: 80%; top: 40px;}
}

Hope that helps. Thanks.