Support Forums for LiveMesh Themes & Plugins › Forums › Extinct Theme Support › Header not displaying all content on iPhone › Reply To: Header not displaying all content on iPhone
September 11, 2013 at 12:39 pm
#1591
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.