2013-06-01 27 views
1

我已經集成了一個phonegap電子郵件插件。但是,當我從phonegap應用程序打開電子郵件時,標題被切斷。下面是我遵循的步驟:標題高度被切斷在電話jqueryMobile應用程序

1> The regular image, before opening up email. When the user clicks "Send Feedback, it goes to next screen."

2>The email is opened and when i hit cancel, the header gets cut off as shown in image 3 ![][2]

3>Here u can see the header gets cut off.

這裏是CSS,我添加到報頭:

div[data-role="header"] { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    min-height: 45px; 
} 

.ui-header .ui-title, .ui-footer .ui-title{ 
    font-size: 18px; 
} 

任何幫助將不勝感激。 .. 提前致謝 !!! :)

回答

0

我討厭回答我自己的問題,但這是我所做的。

正如其中一個stackoverflow答案中提出的,我從index.html元標記中拿出「height = device-height」。

但是,這解決了IOS 5的問題,但仍然存在IOS6。

所以,這類問題就解決了。

http://osdir.com/ml/phonegap/2012-09/msg01797.html

相關問題