木星4的主題,一切都在木星的後端「的主題選項」:
您可以禁用工具欄和(如果需要以上)140px之間設置頁眉高度200像素。
對於造型去。「樣式選項卡(或菜單):
無需重疊或樣式添加
不要忘記,木星主題是對你的背景圖像作出反應......
解決高級主題問題的最準確的方法是閱讀文檔,搜索Jupiter支持線程或詢問此支持線程。
----(更新)----
要設置不同的圖像大小,你需要使用CSS(這只是一個例子):
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-hd.jpg') no-repeat !important;
}
@media only screen and (max-width: 1024px) {
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-big.jpg') no-repeat !important;
}
}
@media only screen and (max-width: 768px) {
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-medium.jpg') no-repeat !important;
}
}
@media only screen and (max-width: 588px) {
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-medium-small.jpg') no-repeat !important;
}
}
@media only screen and (max-width: 400px) {
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-small.jpg') no-repeat !important;
}
}
@media only screen and (max-width: 300px) {
.mk-header-bg.mk-background-stretch {
background: transparent url('/myImage-very-small.jpg') no-repeat !important;
}
}
代碼或鏈接到該網站將需要幫助你。 – Vector