Like on this site
pieter |
|
---|---|
oc |
|
---|---|
If it is Cotonti you use, you can edit it and by default it comes like this.
If something else (seditio, ldu) I think you gonna have to edit core files, because it is hardcoded. |
lalinux |
|
---|---|
Hi..
I want to ask you all about this thing. Where should I edit/add this pagination system on page? thanks |
pieter |
|
---|---|
This is the CSS I use:
.paging, .pagenav
{
padding:6px; text-align:right; font-size:.90em;
}
.pagenav_small
{
padding:0;
text-align:right;
font-size:.80em;
}
.pagenav_prev,.pagenav_next,.pagenav_first,.pagenav_last,.pagenav_pages
{
padding: 2px 6px;
background: #F5F5F5;
color: #1c4851;
margin: 1px;
border: 1px solid #1c4851;
}
.pagenav_current {
padding: 2px 6px;
font-weight: bold;
font-size:160%;
text-decoration: none;
background: #1c4851;
color:#FFFFFF;
margin: 1px;
border: 1px solid #1c4851;
} ... can we help you ...
|
lalinux |
|
---|---|
Thanks for replay
But, I need to know how to implement this pagination on index page? I've seen tutorial on seditioforge, but it's only work for forum, list and pm page Any idea? thanks |
pieter |
|
---|---|
Do you mean like this?
http://www.kruisstraat89.be/ At the bottom. There is also an extra features just before news items (new entry and headlines). You need to install advanced news - If you only want the pagination just add {NEWS_INDEX_PAGENAV} as tag in news.tpl - If you want all features: Add this after <!-- END: PAGE_ROW --> and before <!-- END: NEWS --> in news.tpl <!-- BEGIN: HEADLINES_ROW -->
<div class="{PAGE_ROW_ODDEVEN}">{PAGE_ROW_DATE} : {PAGE_ROW_CATPATH_IDX} {PHP.cfg.separator} <a href="{PAGE_ROW_URL}">{PAGE_ROW_SHORTTITLE}</a></div>
<!-- END: HEADLINES_ROW -->
<div class="paging" style="text-align:center;">{NEWS_INDEX_PAGENAV}</div> I added the following too just before <!-- BEGIN: PAGE_ROW --> <div class="paging righttext">{NEWS_SUBMITNEWPOST} {NEWS_HEADLINESTOGGLE}</div> ------------- I am not sure if you need sedplus too for that look that I have. (Just try it.) http://www.t3-design.com/seditio-plus/ ... can we help you ...
|
|
This post was edited by pieter (2009-05-27 03:46, 15 years ago) |
lalinux |
|
---|---|
Thanks man
It work like a charm! |