スプラッシュ ページ (静的ページ) を作成しようとしていますが、問題は、bg-picture の下にある div を追加するときです。どうすれば解決できますか? コンテンツを含む 600px の中央の div ホルダーが必要です。
私のコード、
<html><head>
<meta charset="utf-8">
<title>Splash Page</title>
<style>
img.splash {
/* Set rules to fill background */
min-height: 100%;
min-width: 1024px;
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
}
@media screen and (max-width: 1024px){
img.splash {
left: 50%;
margin-left: -512px; }
}
.splashHold{ margin:0 auto; background-color:#0C3; width:600px; height:150px; z-index:100;}
</style>
</head>
<body>
<a href="ttp://planeta.se/luiza/exempelsida/"><img class="splash" src="<?php bloginfo('stylesheet_directory'); ?>/images/splashBg.jpg"></a>
<div class="splashHold">Test writing here..</div>