博易ブログのバックグラウンド記事管理ページにページングが表示されない問題を解決する

1488 ワード

blogyi 2をアップグレード0以降、文章管理ページにページング機能が見つからないことに気づいたので、いくつかのブラウザを変えて見てみました.火狐やグーグルブラウザでページング機能が見えます.これは明らかにバックグラウンドcssスタイルの問題です.Googleブラウザでテストしてみると、ページング機能の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; width:16px; height:16px;}

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

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

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

サーバ上のコンテンツの置き換え、問題解決