Вывожу строки таблицы из базы, каждая строка - это ссылка, она должна выделяться при наведении, при нажатии перекидывать на другую страницу. В опере, мозиле, сафари, все работает, в IE нет.
В IE при наведении на строку, она выделяется, при этом внизу в строке состояния показывается правильная ссылка, но если нажать, то ничего не происходит. (другие ссылки на странице работают) Помогите разобраться плиз.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Портфолио https://www.behance.net/d4d4186e
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Портфолио https://www.behance.net/d4d4186e
Question
Мамай
Столкнулся с такой проблемой:
Вывожу строки таблицы из базы, каждая строка - это ссылка, она должна выделяться при наведении, при нажатии перекидывать на другую страницу. В опере, мозиле, сафари, все работает, в IE нет.
В IE при наведении на строку, она выделяется, при этом внизу в строке состояния показывается правильная ссылка, но если нажать, то ничего не происходит. (другие ссылки на странице работают) Помогите разобраться плиз.
———————————
Код:
<?php
do {printf("
<a href='price_unit.php?id=%s' class='catalog_table'>
<table cellpadding='0px' cellspacing='0px'>
<tr>
<td class='table_catalog_img'>%s</td>
<td class='table_catalog_col1'>%s</td>
<td class='table_catalog_col2'>%s</td>
<td class='table_catalog_col3'>%s<img src='img/rub_img.png'></td>
<td class='table_catalog_col4'>%s</td>
</tr>
</table>
</a>
", $myrow_catalog['id'],
$myrow_catalog['photo_mini'], $myrow_catalog['name'], $myrow_catalog['article'], $myrow_catalog['price'], $myrow_catalog['available']
);}
while($myrow_catalog=mysql_fetch_array($result_catalog));
?>
———————————
CSS
A.catalog_table:link {display:block; text-decoration: none; font-family:Verdana; text-align:left; font-weight: bold; color:#000000;}
A.catalog_table:visited {text-decoration: none; font-family:Verdana; text-align:left; font-weight: bold; color:#000000;}
A.catalog_table:active {text-decoration:none ; font-family:Verdana; text-align:left; font-weight:bold; color:#000000;}
A.catalog_table:hover {text-decoration: none; font-family:Verdana; text-align:left; font-weight:bold; color:#333333; background:#dbdbdb;}
.table_catalog_img {
height:70px;
border:0px;
vertical-align:top;
text-align:left;
text-indent:0px;
margin-top:0px;
font-size:15px;
margin-left:0px;
margin-bottom:0px;
padding:0px;
float:left;
width:100px;}
.table_catalog_col1 {
height:75px;
vertical-align:top;
text-align:left;
text-indent:0px;
padding:0px;
margin-top:0px;
margin-left:0px;
font-size:12px;
float:left;
width:300px;
margin-bottom:0px;}
.table_catalog_col2 {
height:75px;
vertical-align:top;
text-align:left;
text-indent:0px;
padding:0px;
margin-top:0px;
margin-left:0px;
font-size:12px;
float:left;
width:120px;
margin-bottom:0px;}
.table_catalog_col3 {
height:75px;
vertical-align:top;
text-align:left;
text-indent:0px;
padding:0px;
margin-top:0px;
margin-left:0px;
font-size:12px;
float:left;
width:100px;
margin-bottom:0px;}
.table_catalog_col4 {
height:75px;
vertical-align:top;
text-align:left;
text-indent:0px;
padding:0px;
margin-top:0px;
margin-left:0px;
font-size:12px;
float:left;
width:50px;
margin-bottom:0px;}
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.