dedecms文章排序加上序列号

要实现dedecms文章列表加上序列号效果,方法如下:

首先我们看下标签的调用代码:

 1 <DIV class="downtop border">
 2 <UL class=text>
 3 {dede:arclist orderby=pubdate type='commend.' titlelen='26' row='10' channel=3}
 4 <LI>[field:global runphp='yes' name=autoindex]
 5 $a="<SPAN class='num active'>";
 6 $b="</SPAN>";
 7 $c="<SPAN class='num'>";
 8 if (@me > 3) @me = $c.@me.$b;
 9 else @me = $a.@me.$b;
10 [/field:global] <SPAN class=tit><A title="[field:title/]"
11 href="[field:filename/]">[field:title/]</A></SPAN></LI>
12 {/dede:arclist}
13 </UL>
14 </DIV>
上面的是dedecms标签的调用部分。
下面看看我们的css代码部分。
.downtop {
FLOAT: left; OVERFLOW: hidden; WIDTH: 218px; HEIGHT: 278px
}
.downtop UL.text {
MARGIN: 0px 10px; WIDTH: 198px; PADDING-TOP: 5px
}
.downtop UL.text LI {
WIDTH: 198px
}
.downtop UL.text SPAN {
DISPLAY: block; FLOAT: left
}
.downtop UL.text SPAN.num {
MARGIN-TOP: 4px; PADDING-LEFT: 1px; FONT-WEIGHT: bold; FONT-SIZE: 10px; WIDTH: 18px; LINE-HEIGHT: 12px; HEIGHT: 13px; TEXT-ALIGN: center;COLOR: #fff; BACKGROUND-COLOR: #b7b7b7
}
.downtop UL.text LI SPAN.active {
BACKGROUND-COLOR: #7abdff
}
.downtop UL.text SPAN.tit {
PADDING-LEFT: 10px; OVERFLOW: hidden; WIDTH: 168px; WHITE-SPACE: nowrap; HEIGHT: 21px
}

 

 

posted @ 2012-05-10 20:39  阿兹米亚  阅读(873)  评论(0编辑  收藏  举报