может сбрить несколько байтов, удалив такие вещи, как пробелы и последнюю точку с запятой в блоке свойств.)
о сделал этот кусок кода для меня, и я думаю, что в нем есть ненужные кусочки.
Это код:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/> <title>IS THIS THING ON?</title> <link rel="stylesheet"
href="./wp-content/themes/cosmicbuddy/_inc/css/screen.css"
type="text/css" />
</style>
</head> <body>
<a href="<?php bp_send_public_message_link() ?>" class="myButton"><!--
button --></a>
</body> </html>
И это CSS-файл, на который он ссылается:
.myButton {
background: url(/wp-content/themes/cosmicbuddy/_inc/images/see.gif) no-repeat;
border: 1;
cursor: pointer;
display: block;
height: 22px;
width: 22px;
margin-left: 5px;
} .myButton:hover {
background: url(/wp-content/themes/cosmicbuddy/_inc/images/too.gif) no-repeat;
}
Теперь у меня есть два вопроса:
Можно ли сократить первый фрагмент кода?
Как я могу создать файл CSS, который реализует настройки для более чем одного из этих параметров. Так же, как это делает в моем CSS-файле ссылки:
#userbar #bp-nav li.current a{
color:#000;
font-weight:bold;
}
#userbar #bp-nav li a:hover {
color: #3193c7; text-decoration: none;
}