zoukankan      html  css  js  c++  java
  • 解决博易博客后台文章管理页面无法显示分页的问题

    升级blogyi2.0以后我发现文章管理页面找不到分页的功能,于是我换了几个浏览器查看了一下,火狐或谷歌浏览器可以看到分页功能的。这很明显是后台css样式的问题。通过谷歌浏览器测试了一下,找到了分页功能的css样式。

    解决办法非常简单:

    1.打开BlogYi.Net-2.0-Source\BlogEngine\BlogEngine.NET\admin\style.css找到

    .Pager .prevLink {background: transparent url("images/link-prev.png") no-repeat scroll center center; padding:8px;}
    .Pager .nextLink {background: transparent url("images/link-next.png") no-repeat scroll center center; padding:8px;}
    .Pager .firstLink {background: transparent url("images/link-first.png") no-repeat scroll center center; padding:8px;}
    .Pager .lastLink {background: transparent url("images/link-last.png") no-repeat scroll center center; padding:8px; }


    修改为

    .Pager .prevLink {background: transparent url("images/link-prev.png") no-repeat scroll center center; display:inline-block; 16px; height:16px;}
    .Pager .nextLink {background: transparent url("images/link-next.png") no-repeat scroll center center; display:inline-block; 16px; height:16px;}
    .Pager .firstLink {background: transparent url("images/link-first.png") no-repeat scroll center center; display:inline-block; 16px; height:16px;}
    .Pager .lastLink {background: transparent url("images/link-last.png") no-repeat scroll center center;  display:inline-block; 16px; height:16px;}


    替换服务器上的内容,问题解决

  • 相关阅读:
    转 python 的几个内置函数(lambda ,zip, filter, map, reduce )用法
    给明年依然年轻的我们
    青春易逝,留白抱憾
    ubuntu ××.10和××.04分别代表什么意思
    mysql创建用户的一些问题
    解藕的小例子
    《Getting Real》读书笔记
    宏中常用到的属性和方法
    宏生成图表
    Excel的一些常用操作,给自己记录一下,呵呵!
  • 原文地址:https://www.cnblogs.com/AlexCheng/p/2119986.html
Copyright © 2011-2022 走看看