帝国CMS排行数字效果实现方法

来自:互联网
时间:2019-03-11
阅读:

本文实例讲述了帝国CMS排行数字效果实现方法。分享给大家供大家参考。具体实现方法如下:

方法1:在文章标签前加上:

<img src="/[!--no.num--].gif">

做 1~9.gif 图片,并结合CSS即可。

方法2:通过文章ID在列表标签里加上判断语句:

if($i<4){ 
//黄样式 
}else{ 
//灰样式 
}

最终效果如下图所示:

帝国CMS排行数字效果实现方法

增加字段提示Row size too large,帝国CMS增加字段提示以下信息.

Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. You have to change some columns to TEXT or BLOBs  

alter table ***_ecms_infoclass_info add zz_jdtype text not null,add z_jdtype varchar(255) not null,add qz_jdtype varchar(255) not null,add save_jdtype varchar(10) not null;

超过MySQL允许的最大单表长度,解决办法是:减少字段,或字段少用text类型.

希望本文所述对大家的帝国CMS建站有所帮助。

返回顶部
顶部