У меня особенная просьба. Вы можете мне просто цвет таблицы поменять? С коричневого на нежно-нежно голубой.
В верху
<style> #menu { margin-top: -5px; width: 200px; height: 60px; background-repeat : no-repeat;} #menu span { text-align:left; display:block; color:#000000; margin: 7px 0; padding: 11px; } #submenu, #menu span { border-radius:10px; -webkit-border-radius:10px; -khtml-border-radius:10px; -moz-border-radius:10px; -o-border-radius:10px; background:#8A8A8A; } #menu .tabactive { color: #000000; background:#acacac; } #submenu { padding: 3px; height: 200px; text-align: center; font-size: 12px; width: 540px; } .submenutext { display: none; height: 40px; } </style>
В низу
<script type="text/javascript"> $(document).ready(function() { $("td.#MenuTxT div.submenutext").hide(); <!--$(".tabs span:first").addClass("active").show(); --> $("td.#MenuTxT div.submenutext:first").show(); $("div.#menu span").click(function() { $("div.#menu span").removeClass("tabactive"); $(this).addClass("tabactive"); $("td.#MenuTxT div.submenutext").hide(); var activeDiv = $(this).attr("alt"); $("div."+activeDiv).fadeIn(); return false; }); }); </script>
Объявление
<style> #pun-announcement h2 {display: none;} #pun-announcement .container {padding-top: 1em} </style> <center><table style="width: 800px"> <tbody> <tr> <td valign=top> <div id="menu"> <b> <span alt="#sm1" style="cursor: pointer;">Добро пожаловать</span> <span alt="#sm2" style="cursor: pointer;">Новости</span> <span alt="#sm3" style="cursor: pointer;">Реклама</span> <span alt="#sm4" style="cursor: pointer;">Администрация</span> <span alt="#sm5" style="cursor: pointer;">Партнёры</span> </b> </div> </td> <td id="MenuTxT" align="center" valign="top"> <div id="submenu" align="center"> <div id="sm1" class="submenutext" style="display:block;"> <br/><br/> <div style="overflow: auto; height: 200px"> текст добро пожаловать </div> </div> <div id="sm2" class="submenutext"><br /><br /> <div style="overflow: auto; height: 200px"> текст новости форума </div> </div> <div id="sm3" class="submenutext"><br /><br /> <div style="overflow: auto; height: 200px"> текст реклама </div> </div> <div id="sm4" class="submenutext"><br /><br /> <div style="overflow: auto; height: 200px"> текст админы </div> </div> <div id="sm5" class="submenutext"><br /><br /> <div style="overflow: auto; height: 200px"> </div> </div> </div> </td> </tr> </tbody> </table></center>