Jump to content

Alfiks

Newbie
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Alfiks

  1. Здорово. ТО что нужно! А за ссылку огромное чел. спасибо.
  2. Помогите плиз решить проблемку. Имеем java script: //<!-- function menu_parent_show_on(ID){ timeout_id = window.setTimeout("menu_parent_show('"+ID+"')",1200); } function menu_parent_show_off(){ clearTimeout(timeout_id); } function menu_parent_show(ID){ if(document.getElementById(ID).style.display == 'none'){ document.getElementById(ID).style.display=''; } } function menu_parent_hide(ID){ if(document.getElementById(ID).style.display != 'none'){ document.getElementById(ID).style.display='none'; } }//--> И html вариант, который использует данный java script: <div class="menu_parent"><a onMouseOut="menu_parent_show_off()" href="http://arnebiaproduct.arnebia.ru/cgi-bin/index.cgi?id=108&bsk=1" onMouseOver="menu_parent_show_on('mp_108')">Заказы</a></div> <div class="menu_parent_tips" id="mp_108" style="display: none;"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tbody> <tr> <td class="menu_parent_tipsdata" width="100%"><div class="newsthomb_left"><img src="index.cgi_files/order_small.gif" class="newsicon_left" border="0"></div> <div align="justify">Тут описание.</div></td> <td valign="top"><img onClick="menu_parent_hide('mp_108')" src="index.cgi_files/cross_parent.gif" alt="Close"></td> </tr> </tbody> </table> </div> Проблема в том, что JavaScript отказывается понимать class. В упор не видит в нем вложенный стиль. В function menu_parent_show(ID) используется стиль, а хотел бы заставить понимать class. Как можно обойти подобную проблему? P.S. Админ, а можно поправить в заголовке темы style на class? А то как-то несоответствие темы.
  3. Спасибо, сработало. Однако странно... до этого вставлял, работало криво. Спасибо за быстрый ответ!
  4. Столкнулся с проблемой выезда картинки за пределы div. <div class="newsdgrp_right" id="news_217"> <div class="newsthomb_right"><img class="newsicon_right" src="index_data/217s.gif"></div> <div> Ассортиментная скидка </div> </div> и код css .newsdgrp_left, .newsdgrp_right { clear: both; padding: 5px 5px 10px 5px; margin-bottom: 5px; border: 1px solid #A3C5E9; padding: 5px 5px 10px 5px; margin-bottom: 5px; } div.newsthomb_center, div.newsthomb_right{ float: right; padding-bottom: 5px; padding-left: 10px; } .newsicon_right, .newsicon_center, .newsicon_left{ margin-right: 10px; } В итоге получаю вот такое: clear: both; не помогает. Как с таким бороться?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy