How to disable the Navigation buttons when there are no more records to display

How to disable the Navigation buttons when there are no more records to display

How to disable the Navigation buttons when there are no more records to display
divider

To achieve this you need to change the CSS file for the nav SB:

Search for

div.KT_textnav ul li a.disabled {
      text-decoration: none;
      color: #AAAAAA;
      cursor: default;
}

and change to this

div.KT_textnav ul li a.disabled {
      visibility: hidden;
}
Written by:  - 28 Sep, 2009