Последние добавленные материалы пользователя для сайтов на uCoz
1 |
<div id="load" style="display: none;"><div align="left"><div id="nns"><a href=$ENTRY_URL$>$TITLE$</a></div></div></div> |
2#: Следующий код вставляйте в персональную страницу пользователя в то место, где хотите видеть последние материалы:
1 2 3 4 5 6 7 |
<fieldset class="ssAsg"><legend>Последние материалы пользователя "<b>$_USERNAME$</b>":</legend><span class="h17"></span><script type="text/javascript"> $.get("$_LOAD_ACTIVITY_URL$",function(data) { var ifnohist = $("#load:first", data).html(); if (ifnohist == null) { $('.h17').html('Материалов не найдено'); }$("#load", data).each(function() {var histr = $(this).html();$('.h17').before(histr);}); }); </script></fieldset> |
3#: Следующий код в самый верх вашего CSS:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
.ssAsg {border:1px solid #ECECEC; margin: 2px; padding: 5px 5px 5px 5px; background: #ffffff;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;} .ssAsg:hover {border-color:#c1c1c1;} .ssAsg legend {color:#dedede;padding:0 5px;} .ssAsg legend a.aname {color:#aaa;} .ssAsg legend a.aent {color:#898989;display:inline-block;margin:0 3px;} .ssAsg span {margin-left:9px;margin-bottom:2px;display:block;font:11px arial;color:#606060;} #nns { margin: 0px; padding: 0px 0px; background: white; } #nns a { margin: 0px; padding: 3px; display: block; background: white; border-bottom: solid 1px #CCD3DA; } #nns a:hover { text-decoration: none; background-color: #f2f5f7; } |