このドロップダウン メニューに 2 番目の列を追加するにはどうすればよいですか?
テキストの代わりに画像を使用しています。サイズが間違っているテーブルや画像などのテーブルがあることは知っていますが、現時点では単なるテストです。このメニューを改善するために他に考えられることがあれば、お知らせください。私はコーディングについてほとんど何も知らず、これを作成しませんでした。
グーグルがこれに満足していない可能性がある場合は、私にも知らせてください. そこには隠し値があり、その隠し値がどのように機能するかを理解していないため、それが seo で問題ないかどうかわかりません
<style>
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}
</script>
<table border="1" cellspacing="1" width="60" height="60">
<tr>
<td width="60" height="60">
<table width="60" height="60">
<tr bgcolor="#FFFFFF">
<td onmouseover="showmenu('Graphic Design')" onmouseout="hidemenu('Graphic Design')">
<img src="Thumbs/plus.png" width="60" height="60"><br />
<table class="menu" id="Graphic Design" width="60">
<tr>
<td class="menu"><a href="www.techagesite.com/meboy.htm">
<img src="thumbs/angry-birds-iphone-4-wallpaper-mobile-05_small.jpg" width="100" height="150">
</td>
</tr>
<tr>
<td class="menu"><a href="www.techagesite.com/meboy.htm">
<img src="thumbs/angry-birds-iphone-4-wallpaper-mobile-05_small.jpg" width="100" height="150">
</td>
</tr>
</table>
</td>
</td>
</tr>
</table>
</td>
</tr>
</table>