重写一个样式。如 .padleft0{ padding:0 10px 0 0 }
意思就是。你第一张图片被第一个样式(padding:0 10px )给偏移到右边来了。
DEDE的页面都分动态和静态两种方式显示,显然标签的解析函数也会有两个,分别对应静态和动态页面。首先找到include文件夹内的arc.archives.class.php文件,\include\arc.archives.class.php如果是动态的,ctrl+F查找function GetPagebreakDM($totalPage, $nowPage, $aid)如果是静态的,ctrl+F查找function GetPagebreak($totalPage, $nowPage, $aid)
以静态的为例:
/**
* 获得静态页面分页列表
*
* @accesspublic
* @param int $totalPage 总页数
* @param int $nowPage 当前页数
* @param int $aid 文档id
* @returnstring
*/
function GetPagebreak($totalPage, $nowPage, $aid)
{
if($totalPage==1)
{
return ""
}
$PageList = "<li><a>共".$totalPage."页: </a></li>"
$nPage = $nowPage-1
$lPage = $nowPage+1
if($nowPage==1)
{
$PageList.="<li><a href='#'>上一页</a></li>"
}
else
{
if($nPage==1)
{
$PageList.="<li><a href='".$this->NameFirst.".".$this->ShortName."'>上一页</a></li>"
}
p是存在行高的啊,比如行高30px,字体高12px,那上下自然就会填充9px,又比如行高20px,字体实际大小是11px,那就上下各会填充4-5px,然后再加上你写的padding下20px,当然就是25px了。你试试设置下p的行高,再看看。
p{line-height:12px}