Посмотрите как отображается левое меню в FF и IE
http://www.rcr-travel.ru/mainpagn.php

Как мне сделать чтобы во всех браузерах отображалось как в IE.
Сколько бьюсь, никак не получается.

Часть кода css

Выделить код

Код:

a.lefts {
	text-decoration: none;
	background-image: url(../images/button/left.gif);
	color: Blue;
	font-family: Book Antiqua,Lucida,Arial,Helvetica,sans-serif;
	font-size: small;
	background-repeat: no-repeat;
	line-height: 26px;
	width: 195px;
	height: 26px;
}
a.lefts:visited {
	text-decoration: none;
	background-image: url(../images/button/left.gif);
	color: Blue;
	font-family: Book Antiqua,Lucida,Arial,Helvetica,sans-serif;
	font-size: small;
	background-repeat: no-repeat;
	line-height: 26px;
	width: 195px;
	height: 26px;
}
a.lefts:hover {
	text-decoration: none;
	background-image: url(../images/button/left_u.gif);
	color: #4682B4;
	font-family: Book Antiqua,Lucida,Arial,Helvetica,sans-serif;
	font-size: small;
	background-repeat: no-repeat;
	line-height: 26px;
	width: 195px;
	height: 26px;
}

html

Выделить код

Код:

<a href="conf.php" class="lefts">Конференции</a><br>
	 <a href="grouphtl.php" class="lefts">Отдых</a><br><br>
	 <a href="reqsend.php" class="lefts">Заявки в корзине</a><br>
Выделить код

Код:

a.lefts:link,a.lefts:visited,a.lefts:active {display: block;}

так работает?

Спасибо.
Как раз сам только что нарыл этот display: block; =)
Теперь все работает.