After upgrading blogyi2.0, I found thatArticleThe paging function cannot be found on the Management page, so I changed several browsers to view it. Firefox or Google browser can see the paging function. This is obviously a problem with the background CSS style. I tested it through Google browser and found the CSS style of the paging function.
The solution is very simple:
1. Open blogyi. Net-2.0-source \ blogengine. Net \ admin \ style.css and find
. Pager. prevlink {Background: transparent URL ("images/link-prev.png") No-repeat scroll center; padding: 8px ;}. pager. nextlink {Background: transparent URL ("images/link-next.png") No-repeat scroll center; padding: 8px ;}. pager. firstlink {Background: transparent URL ("images/link-first.png") No-repeat scroll center; padding: 8px ;}. pager. lastlink {Background: transparent URL ("images/link-last.png") No-repeat scroll center; padding: 8px ;}
Change
. Pager. prevlink {Background: transparent URL ("images/link-prev.png") No-repeat scroll center; display: inline-block; width: 16px; Height: 16px ;}. pager. nextlink {Background: transparent URL ("images/link-next.png") No-repeat scroll center; display: inline-block; width: 16px; Height: 16px ;}. pager. firstlink {Background: transparent URL ("images/link-first.png") No-repeat scroll center; display: inline-block; width: 16px; Height: 16px ;}. pager. lastlink {Background: transparent URL ("images/link-last.png") No-repeat scroll center; display: inline-block; width: 16px; Height: 16px ;}
Replace the content on the server to solve the problem.