К тегу h3 добавить стили
Привет всем.
var setOpacity = function(curr, last, el_curr, el_last, elements) { if (last !== null) { $($('li', '#thumbs')[last]).css({ border:"none", fontWeight:"bolder", backgroundColor:"white" }); } $($('li', '#thumbs')[curr]).css({ fontWeight:"bolder", backgroundColor:"black",color:"#F47B01" }); } имееться код. так вот как мне прибавить стили к h3. Спасибо заранее |
Цитата:
h3 { font-weight: bold; font-size: 20px; color: blue; } |
я имею виду в js коде
|
Цитата:
|
мне так надо
|
antonio22,
сложно понять какое отношение имеет ваш код к h3 |
Мда... -_\\
$('h3').css({ color: 'red', fontSize: '20pt', fontWeight: 'bold', textAlign: 'center' }); |
1e: :nono:
|
var setOpacity = function(curr, last, el_curr, el_last, elements) { if (last !== null) { $($('li', '#thumbs')[last]).css({ border:"none", fontWeight:"bolder", backgroundColor:"white" }).removeClass('s'); } $($('li', '#thumbs')[curr]).css({ fontWeight:"bolder", backgroundColor:"black",color:"#F47B01" }).addClass('s'); } |
Часовой пояс GMT +3, время: 06:18. |