| Добрый день.Хочу прикрутить кнопку поиск на сайт(сайт на Wp) Прописал в header.php код: <form method="get" name="searchform" id="searchform" action="<?php bloginfo('siteurl')?>"> <input type="text" name="s" id="s" value="<?php echo wp_specialchars($s, 1); ?>"/> <input id="btnSearch" type="submit" name="submit" value="<?php _e('Хочу найти'); ?>" /> </form> Далее в style.css #s { border: 1px solid #02909d; color: #000; height: 23px; width: 155px; padding: 0 0 0 5px; } #searchsubmit { border: 0 none; cursor: pointer; height: 25px; margin: 0 0 0 -10px; width: 68px; background: #02909d; / color: #fff; border-radius: 3px; } через мобильник заходишь-кнопка видна,через ПК нет.В чем может быть дело? |