2012-11-21 49 views
0

我有我在JQ-移動網站的標題想爲中心的標誌,我想要的圖像動態的休息,所以我做了DIV這使得它完成。但我不能把它放在圖像上。如果我設置絕對位置,它就會消失。我爲此做了一個jsfiddle:http://jsfiddle.net/nMR85/52/分度,邊境上的圖像和身體的背景色

我的DIV是

#example1 { 
-moz-border-top-left-radius: 15px; 
border-top-left-radius: 15px; 
-moz-border-top-right-radius: 15px; 
border-top-right-radius: 15px; 
background-color: #fff; 
height:3em; 
} 

這裏是誰,我希望它看起來像http://www.imagebanana.com/view/f69uguue/final.png

怎樣纔可以做一個形象呢?我的另一個問題是,我無法找到該屬性將內容的背景顏色更改爲白色。來自jqmobile.com的ThemeRoller也不起作用。它是哪個屬性?! 感謝

+0

下一次提到請留下unneccesary碼出來的jsfiddle的。 '.ui-bar-a'和'.ui-overlay-a'在你的css中不適用於你的html代碼。 –

+0

.ui-bar-a會更改藍色背景。和的.ui-疊加一個應該是在那裏我可以改變內容 – user1010775

+0

肯定的背景的東西。在你的網站也許,但在小提琴這兩個類不存在於你的HTML。 –

回答

0

您可以在#示例1樣式使用負的margin-top:

#example1 { 
    -moz-border-top-left-radius: 15px; 
    border-top-left-radius: 15px; 
    -moz-border-top-right-radius: 15px; 
    border-top-right-radius: 15px; 
    background-color: #fff; 
    height:3em; 
    margin-top:-2.8em; 
}​ 

下面的結果: http://jsfiddle.net/nMR85/57/

改變背景顏色的屬性是background-color

背景顏色:白色;

您還可以使用background這將覆蓋任何其他背景屬性,以防有一些圖像。

+0

謝謝謝謝謝謝!工作很棒。但不是背景:/ – user1010775

+0

我更新了第二個問題的帖子。 – Alvaro

+0

看到了,但它不適合我嗎? – user1010775

1

哎爲background-color:white;您可以更新jquery.mobile.min.css下面CSS財產

CSS

.ui-mobile .ui-page-active { 
    background:white; 
    display: block; 
    overflow: visible; 
}