Перестал работать input в sidebar html/css киномонстр?
0
Приветствую сергей, помоги решить проблему, input: text password search в sidebar срабатывает как ссылка на страницу контакты, в чем может быть проблема, если приложить код, то какой?
4 ответов
0
Код покажите полностью index.html и style.css или исходный код можно скачать.
0
<!DOCTYPE html> <!-- тип документа -->
<html lang="ru"> <!-- язык контента -->
<head>
<meta charset="UTF-8"> <!--кодировка страницы -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- тег для адаптивной верстки(отоброжения для моб устройств) -->
<title>Главная</title> <!-- заголовок страницы -->
<meta name="description" content="КиноМонстр - это портал о кино, сериалов и документальных фильмов"> <!-- описание страницы -->
<meta name="keywords" content="КиноМонстр, кино, онлайн, смотреть, фильмы, hd, fullhd"> <!-- ключевые слова -->
<link rel="stylesheet" href="assets/css/style.css"> <!-- css -->
</head>
<body>
<div class="main">
<div class="header">
<div class="logo">
<div class="logo_text">
<h1><a href="index.html">КиноМонстр</a></h1>
<h2>Кино - наша страсть!</h2>
</div>
</div>
<div class="menubar">
<ul class="menu">
<li class="selected"><a href="index.html">Главная</a></li>
<li><a href="films.html">Фильмы</li>
<li><a href="#">Сериалы</li>
<li><a href="rating.html">Рейтинг фильмов</li>
<li><a href="contact.html">Контакты</li>
</ul>
</div>
</div>
<div class="site_content">
<div class="sidebar_container">
<div class="sidebar">
<h2>Поиск</h2>
<form method="post" action="#" id="search_form">
<input type="search" name="search_field" placeholder="ваш запрос"/>
<input type="submit" class="btn" value="найти"/>
</form>
</div>
<div class="sidebar">
<h2>Вход</h2>
<form method="post" action="#" id="login_form">
<input type="text" name="login_field" placeholder="логин"/>
<input type="password" name="password_field" placeholder="пароль"/>
<input type="submit" class="btn" value="войти"/>
<div class="lables_passreg_text">
<span><a href="#">забыли пароль?</a></span> | <span><a href="#">регистрация</a></span>
</div>
</form>
</div>
<div class="sidebar">
<h2>Новости</h2>
<span>25.09.2020</span>
<p>Мы запустили расширенный поиск</p>
<div class="lables_passreg_text">
<span><a href="#">читать</a></span>
</div>
</div>
<div class="sidebar">
<h2>Рейтинг фильмов</h2>
<ul>
<li><a href="show.html">Интерстеллар</a><span class="rating_sidebar">8.1</span></li>
<li><a href="show2.html">Матрица</a><span class="rating_sidebar">8.0</span></li>
<li><a href="show3.html">Безумный макс</a><span class="rating_sidebar">7.8</span></li>
<li><a href="show4.html">Облачный атлас</a><span class="rating_sidebar">7.5</span></li>
</ul>
</div>
</div>
<div class="content">
<h1>Новые фильмы</h1>
<div class="films_block">
<a href="show2.html"><img src="assets/img/matrix.png"></a>
<a href="show3.html"><img src="assets/img/max.png"></a>
<a href="show.html"><img src="assets/img/inter.png"></a>
<a href="show4.html"><img src="assets/img/cloud.png"></a>
</div>
<h1>Новые сериалы</h1>
<div class="films_block">
<a href="#"><img src="assets/img/dead.png"></a>
<a href="#"><img src="assets/img/silicon.png"></a>
<a href="#"><img src="assets/img/breakingbad.png"></a>
<a href="#"><img src="assets/img/xfiles.png"></a>
</div>
<div class="post">
<hr>
<h2><a href="#">Как снимали интерстеллар</a></h2>
<div class="post_content">
<p>
В 2014 году вышел фильм, который занял топовые позиции в рейтингах. "Интерстеллар" — не выдумка, а научная фантастика, основанная на законах физики и представлениях о Вселенной, космосе, черных дырах. Кип Торн, ученый, консультант картины и автор книги "Интерстеллар. Наука за кадром" goo.gl/ZL1tgb, рассказывает о съемках в Голливуде и об удивительном союзе науки и кино.
</p>
</div>
<p><a href="#">читать</a></p>
</div>
<div class="post">
<hr>
<h2><a href="#">Актер Том Хенкс поделился впечатлением о фестивале</a></h2>
<div class="post_content">
<p>
16 февраля в Лондоне состоялась 67-я церемония вручения наград Британской киноакадемии. Леонардо ДиКаприо, Брэд Питт, Анджелина Джоли, Кейт Бланшетт, Хелен Миррен, Эми Адамс, Кристиан Бэйл, Альфонсо Куарон и другие гости и победители премии — в нашем репортаже.
</p>
</div>
<p><a href="#">читать</a></p>
</div>
</div>
</div>
<div class="footer">
<p>
<a href="index.html">Главная</a> |
<a href="films.html">Фильмы</a> |
<a href="#">Сериалы</a> |
<a href="rating.html">Рейтинг фильмов</a> |
<a href="contact.html">Контакты</a>
</p>
<p><a href="https://ru.wh-db.com/">wh-db.com</a></p>
</div>
</div>
</body>
</html>
0
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #fff;
color: #555;
}
p {
line-height: 1.7em;
padding: 0 0 20px 0;
}
input[type="text"], input[type="password"], input[type="search"] {
color: #5d5d5d;
width: 60%;
padding: 8px;
}
input, textarea {
border: none;
outline: none;
border: solid 1px #f2f2f2;
}
h1, h2 {
font: normal 170% 'century gothic', arial;
margin: 0 0 15px 0;
padding: 15px 0 5px 0;
color: black;
}
h2 {
font-size: 145%;
}
a, a:hover {
outline: none;
text-decoration: none;
color: #aeb002;
}
ul {
margin: 2px 0 22px 17px;
}
ul li {
margin: 0 0 6px 0;
padding: 0 0 4px 5px;
line-height: 1.4em;
}
hr {
border: solid 1px #f3f3f3;
}
iframe {
border: solid 3px #dadada;
border-radius: 5px;
}
.header {
background-color: darkslateblue;
height: 180px;
min-width: 900px;
margin-right: 0px;
margin-left: 0px;
font-size: 0.8em;
}
.main, .logo, .menubar, .site_content, .footer {
margin-right: auto;
margin-left: auto;
}
.logo {
padding-bottom: 40px;
width: 880px;
}
.logo h1, .logo h2 {
marggin: 0 0 0 9px;
font: normal 300% 'century gothic', arial, sans-serif;
}
.logo_text h1 a:hover {
color: #e4ec04;
}
.logo_text h1, .logo_text h1 a {
padding: 22px 0 0 0;
text-decoration: none;
color: #fff;
letter-spacing: 0.1em;
}
.logo_text h2 {
font-size: 0.9em;
color: #999;
padding: 4px 0 0 4px;
}
.menubar {
width: 900px;
height: 46px;
}
ul.menu {
float: right;
}
ul.menu li {
float: left;
padding: 0 0 0 9px;
list-style: none;
margin: 1px 2px 0 0;
}
ul.menu li a:hover {
color: #e4ec04;
}
ul.menu li a {
font: normal 100% 'trebuchet ms', sans-serif;
display: block;
text-decoration: none;
color: #fff;
padding: 0px 30px 0px 28px;
}
ul.menu li.selected a {
color: #aeb002;
}
ul.menu li.selected a:hover {
color: #e4ec04;
}
.site_content {
width: 980px;
margin: 25px auto 25px auto;
overflow: hidden;
background-color: white;
}
.site_content a:hover {
text-decoration: underline;
}
.sidebar_container {
width: 224px;
float: right;
}
.sidebar {
float: right;
width: 222px;
padding: 5%;
margin: 0 0 16px 0;
background-color: #f9f9f9;
border: solid 1px #f2f2f2;
border-radius: 5px;
}
.btn {
padding: 8px;
background-color: white;
cursor: pointer;
}
.sidebar h2 {
color: #136cb2;
}
.lables_passreg_text {
font-size: 0.8em;
margin-top: 3%;
margin-left: 2%;
}
.sidebar ul {
margin: 0px;
}
.sidebar ul li {
list-style-type: none;
margin: 0 0 0 0;
}
.sidebar .rating_sidebar {
float: right;
}
.content {
text-align: left;
float: left;
width: 620px;
pading: 0 0 0 5px;
}
.content a {
text-decoration: none;
}
.films_block {
margin-bottom: 5%;
}
.films_block img {
border: solid 4px #dad7d5;
border-radius: 5px;
width: 22%;
}
.post .post_content {
font-size: 0.9em;
}
.info_film_page {
margin-top: 2%;
margin-bottom: 4%;
}
.info_film_page .label {
font-size: 1.2em;
}
.info_film_page .value {
font-size: 1em;
color: #49945a;
margin-right: 3%;
}
.description_film {
margin-bottom: 15%;
}
.description_film img {
float: left;
margin-right: 2%;
border-radius: 5px;
border: solid 3px #dad7d5;
}
.description_film2 {
margin-bottom: 33%;
}
.description_film2 img {
float: left;
margin-right: 2%;
border-radius: 5px;
border: solid 3px #dad7d5;
}
.reviews {
margin-bottom: 4%;
font-size: 0.9em;
}
.reviews .review_name {
background-color: #7268ad;
padding: 1%;
color: white;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.reviews .review_text {
padding: 2% 0 2% 2%;
color: black;
}
.sent {
margin-bottom: 4%;
}
.sent input[type="text"], textarea {
border: solid 1px #c3c3c3;
margin-bottom: 2%;
}
.sent input[type="text"] {
width: 98%;
}
.sent textarea {
width: 624px;
height: 200px;
}
.sent input[type="submit"] {
background-color: #7268ad;
padding: 2%;
color: white;
border-radius: 5px;
cursor: pointer;
}
.info_film {
margin-bottom: 5%;
background-color: #f9f9f9;
padding: 5%;
height: 250px;
border-radius: 5px;
}
.info_film img {
float: left;
margin-right: 2%;
border-radius: 5px;
border: solid 3px #dad7d5;
width: 25%;
}
.button {
float: right;
background-color: #7268ad;
padding: 1%;
margin-top: 5%;
border-radius: 5px;
clear: both;
font-size: 0.8em;
}
.button a {
color: white;
}
table {
width: 100%;
border: solid 1px #f4f4f4;
}
td {
padding: 2%;
border: solid 1px #f4f4f4;
}
td img {
width: 80px;
vertical-align: middle;
}
.center {
text-align: center;
}
.rating {
font-weight: bold;
}
.footer {
width: 100%;
height: 100px;
text-align: center;
padding: 28px 0 5px 0;
background-color: darkslateblue;
color: #a8aa94;
margin-left: auto;
margin-right: auto;
min-width: 900px;
}
.footer a {
color: #fdfdfd;
text-decoration: none;
}
.footer a:hover{
color: #e4ec04;
text-decoration: none;
}
.footer p {
padding: 0 0 10px 0;
}
/* ---------------css mobile------------------ */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px) {
.header {
background-color: #257965;
min-width: 100%;
height: 20%;
text-align: center;
}
.logo {
width: 100%;
}
.logo h1 {
font: normal 235% 'century gothic', arial, sans-serif;
}
.logo h2 {
font: normal 100% 'century gothic', arial, sans-serif;
color: white;
padding-right: 3%;
}
.menubar {
width: 100%;
height: 100%;
}
.site_content {
width: 100%;
text-align: center;
}
.content {
width: 100%;
text-align: center;
}
.sidebar_container {
float: none;
text-align: center;
margin: 0;
padding: 0;
width: 89%;
}
.sidebar input[type="text"] {
margin-right: 26%;
}
ul.menu {
float: none;
}
ul.menu li {
float: none;
padding: 3%;
}
.content h1, h2 {
font: normal 110% 'century gothic', arial;
}
.films_block img {
width: 43%;
}
.post p {
font-size: 120%;
}
.post_content p {
line-height: 1.5em;
padding: 3%;
text-align: left;
}
.info_film {
float: none;
height: 100%;
margin-bottom: 10%;
}
.info_film img {
width: 80%;
margin-bottom: 5%;
margin-left: 9%;
}
.button {
float: none;
}
table {
display: block;
}
th {
font-size: 75%;
}
td {
padding: 0;
margin: 0;
font-size: 95%;
text-align: left;
}
iframe {
width: 90%;
height: 100%;
}
.description_film, .description_film2 {
width: 90%;
margin-left: 2%;
text-align: left;
}
.description_film img, .description_film2 img {
float: none;
width: 73%;
display: block;
margin: 0;
padding: 0;
margin-left: 15%;
margin-bottom: 8%;
}
.reviews {
text-align: left;
width: 96%;
margin-bottom: 10%;
}
.reviews .review_text {
font-size: 0.9em;
font-weight: bold;
}
.sent input[type="text"] {
width: 80%;
}
.sent textarea {
width: 85%;
}
.sent input[type="submit"] {
padding: 3%;
}
.footer {
background-color: #257965;
min-width: 100%;
height: 20%;
text-align: center;
}
.footer p {
font-size: 0.9em;
}
}
@media only screen
and (min-device-width : 414px)
and (max-device-width : 736px) {
.header {
background-color: #257965;
min-width: 100%;
height: 20%;
text-align: center;
}
.logo {
width: 100%;
}
.logo h1 {
font: normal 235% 'century gothic', arial, sans-serif;
}
.logo h2 {
font: normal 100% 'century gothic', arial, sans-serif;
color: white;
padding-right: 3%;
}
.menubar {
width: 100%;
height: 100%;
}
.site_content {
width: 100%;
text-align: center;
}
.content {
width: 100%;
text-align: center;
}
.sidebar_container {
float: none;
text-align: center;
margin: 0;
padding: 0;
width: 81%;
}
.sidebar input[type="text"] {
margin-right: 26%;
}
ul.menu {
float: none;
}
ul.menu li {
float: none;
padding: 3%;
}
.content h1, h2 {
font: normal 110% 'century gothic', arial;
}
.films_block img {
width: 43%;
}
.post p {
font-size: 120%;
}
.post_content p {
line-height: 1.5em;
padding: 3%;
text-align: left;
}
.info_film {
float: none;
height: 100%;
margin-bottom: 10%;
}
.info_film img {
width: 80%;
margin-bottom: 5%;
margin-left: 9%;
}
.button {
float: none;
}
table {
display: block;
}
th {
font-size: 75%;
}
td {
padding: 0;
margin: 0;
font-size: 95%;
text-align: left;
}
iframe {
width: 90%;
height: 100%;
}
.description_film, .description_film2 {
width: 90%;
margin-left: 2%;
text-align: left;
}
.description_film img, .description_film2 img {
float: none;
width: 73%;
display: block;
margin: 0;
padding: 0;
margin-left: 15%;
margin-bottom: 8%;
}
.reviews {
text-align: left;
width: 96%;
margin-bottom: 10%;
}
.reviews .review_text {
font-size: 0.9em;
font-weight: bold;
}
.sent input[type="text"] {
width: 80%;
}
.sent textarea {
width: 85%;
}
.sent input[type="submit"] {
padding: 3%;
}
.footer {
background-color: #257965;
min-width: 100%;
height: 20%;
text-align: center;
}
.footer p {
font-size: 0.9em;
}
}
0
<form method="post" action="#" id="search_form">
<input type="search" name="search_field" placeholder="ваш запрос"/>
<input type="submit" class="btn" value="найти"/>
</form>
В HTML поиск не будет работать. Поиск реализован в курсе Codeigniter, когда верстка будет переноситься и программироваться сайт.