過去 2 週間にわたってここで多くの回答を読みましたが、私の問題に対する適切な解決策が見つからないようです。誰でも助けることができますか?
初めてレスポンシブ Web サイトを構築しようとしており、Dreamweaver の流動的なテンプレートを使用しています。ただし、右下に配置されたナビゲーションが上部のロゴとキャッチフレーズの div レイヤーに重なるのを防ぐことはできず、モバイルで表示したときにナビゲーション テーブルを縮小することはできませんか?
3 つの 800px 幅の div が重なり合った 1 つの gridContainer があります (これらは、小さいポータルで表示すると収まるように縮小されます):
Div id: ヘッダー
Div id: ロゴ および
Div id: タグ
この下に、3 つのフローティングの狭い div (幅 60%) が残っています (これらは、小さいポータルで表示すると収まるように縮小されます):
Div id: body
Div id: border および
Div id: bookus
最後に、1 つのナビゲーション div (幅 30%):
Div id: contact
このナビゲーション div は、クレートのスタックであるロールオーバー イメージのテーブルであり、各クレートはリンクです。そのため、ウィンドウのサイズが小さくなった場合に、ブラウザ ウィンドウのサイズに関係なく、ブラウザ ウィンドウの下部に表示されるようにする必要があります。(小さいポータルに比例して縮小することはできません)
これが私の CSS です (申し訳ありませんが、どれだけの情報が必要かわかりません):
/* Mobile Layout: 480px and below. */
.gridContainer {
margin-left: auto;
margin-right: auto;
width: 84.9333%;
min-height: 600px;
padding-left: 3.0333%;
padding-right: 3.0333%;
padding-top: 3.0333%;
padding-bottom: 0;
top: 10%;
}
#header {
clear: both;
float: left;
margin-left: 0;
margin-top: 15%;
margin-bottom: 10px;
width: 60%;
height: auto;
display: block;
}
#logo {
clear: both;
float: left;
margin-left: 0;
margin-top: 10%;
width: 60%;
height: auto;
display: block;
}
#tag {
clear: both;
float: left;
margin-left: 0;
margin-bottom: 10px;
width: 60%;
height: auto;
display: block;
}
#body {
clear: both;
float: left;
margin-left: 0;
margin-top: 10px;
margin-bottom: 0px;
width: 60%;
display: block;
}
#border {
clear: both;
float: left;
margin-left: 0;
width: 60%;
display: block;
}
#bookus {
clear: both;
float: left;
margin-left: 0;
margin-top: 10px;
margin-bottom: 0px;
width: 60%;
display: block;
}
#contact {
clear: both;
float: right;
margin-right: 0;
margin-top: 10px;
margin-left: 60%;
margin-bottom: 0;
width: 30%;
height: auto;
display: block;
position: absolute;
bottom: 0;
min-height: 158px;
min-width: 132px;
table-layout:auto;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
.gridContainer {
width: 86.8%;
min-height: 800px;
max-height: 100%;
padding-left: 3.1%;
padding-right: 3.1%;
padding-top: 3.1%;
padding-bottom: 0;
top: 10%;
}
#header {
clear: both;
float: left;
margin-left: 0;
margin-top: 15%;
margin-bottom: 10px;
width: 80%;
height: auto;
display: block;
}
#logo {
clear: both;
float: left;
margin-left: 0;
margin-top: 10%;
margin-bottom: 5px;
width: 80%;
height: auto;
display: block;
}
#tag {
clear: both;
float: left;
margin-left: 0;
margin-bottom: 5px;
width: 80%;
height: auto;
display: block;
}
#body {
clear: both;
float: left;
margin-left: 0;
margin-top: 10px;
margin-bottom: 0px;
width: 60%;
display: block;
}
#border {
clear: both;
float: left;
margin-left: 0;
width: 60%;
display: block;
}
#bookus {
clear: both;
float: left;
margin-left: 0;
margin-top: 10px;
margin-bottom: 0px;
width: 60%;
display: block;
}
#contact {
clear: both;
float: right;
margin-right: 0;
margin-left: 60%;
margin-top: 10px;
margin-bottom: 0;
width: 30%;
display: block;
position: absolute;
bottom: 0;
min-height: 158px;
min-width: 132px;
table-layout:auto;
}
}
/* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
.gridcontainer {
width: 84%;
max-width: 800px;
min-height: 800px;
max-height: 1180px;
padding-left: 3%;
padding-right: 3%;
padding-top: 3%;
padding-bottom: 0;
margin: auto;
top: 10%;
}
#header {
clear: both;
float: left;
margin-left: 0;
margin-top: 15%;
margin-bottom: 10px;
width: 100%;
display: block;
}
#logo {
clear: both;
float: left;
margin-left: 0;
margin-top: 10%;
margin-bottom: 10px;
width: 100%;
height: auto;
display: block;
}
#tag {
clear: both;
float: left;
width: 100%;
height: auto;
margin-left: 0;
margin-bottom: 10px;
display: block;
}
#body {
clear: both;
float: left;
margin-left: 0;
margin-top: 0px;
margin-bottom: 10px;
width: 60%;
display: block;
}
#border {
clear: both;
float: left;
margin-left: 0;
width: 60%;
display: block;
}
#bookus {
clear: both;
float: left;
margin-left: 0;
margin-top: 10px;
margin-bottom: 0px;
width: 60%;
display: block;
}
#contact {
clear: both;
float: right;
margin-right: 30%;
margin-left: 50%;
margin-top: 10px;
margin-bottom: 0;
width: 30%;
height: 30%;
min-height: 158px;
min-width: 132px;
display: block;
position: absolute;
bottom: 0px;
table-layout:auto;
}
}
ナビゲーション テーブルの HTML ソース コードは次のとおりです (これ以上追加する必要がありますか?)。
<div class="contact" id="contact" align="right">
<table width="100%" height="100%"border="0" cellspacing="0" cellpadding="0" style="position:absolute; bottom:0;height:auto; width:auto; max-width:265px; max-height:296px;">
<tr>
<td><a href="mailto:email@url.co.uk" target="_blank"><img src="00_assets/buttons/00_BUTTONS_EMAIL.png" alt="email us" name="email" width="265" height="86" id="email" onMouseOver="MM_swapImage('email','','00_assets/buttons/00_BUTTONS_EMAILO.png',1)" onMouseOut="MM_swapImgRestore()" border="0" align="absbottom" style="height:auto; width:auto; max-width:265px; max-height:86px;"></a></td>
</tr>
<tr>
<td><a href="tel:+123-456-7890" target="_blank"><img src="00_assets/buttons/00_BUTTONS_CALL.png" alt="call us" name="call" width="265" height="70" id="call" onMouseOver="MM_swapImage('call','','00_assets/buttons/00_BUTTONS_CALLO.png',1)" onMouseOut="MM_swapImgRestore()" border="0" align="absbottom" style="height:auto; width:auto; max-width:265px; max-height:70px;"></a></td>
</tr>
<tr>
<td><a href="https://www.url.com/" target="_blank"><img src="00_assets/buttons/00_BUTTONS_FB.png" alt="like us" name="fb" width="265" height="70" id="facebook" onMouseOver="MM_swapImage('facebook','','00_assets/buttons/00_BUTTONS_FBO.png',1)" onMouseOut="MM_swapImgRestore()" border="0" align="absbottom" style="height:auto; width:auto; max-width:265px; max-height:70px;"></a></td>
</tr>
<tr>
<td><a href="https://twitter.com/intent/tweet?screen_name=twitterid" target="_blank"><img src="00_assets/buttons/00_BUTTONS_TWEET.png" alt="mention us" name="tweet" width="265" height="70" lowsrc="00_assets/buttons/00_BUTTONS_EMAILO.png" id="tweet" onMouseOver="MM_swapImage('tweet','','00_assets/buttons/00_BUTTONS_TWEETO.png',1)" onMouseOut="MM_swapImgRestore()" border="0" align="absbottom" style="height:auto; width:auto; max-width:265px; max-height:70px;"></a></td>
</tr>
</table>
よろしくお願いします。