Is there any way to disable a link using CSS?
I have a class called current-page and want links with this class to be disabled so that no action occurs
current-page
CSS can only be used to change the style of something. The best you could probably do with pure CSS is to hide the link altogether.
What you really need is some javascript. Here's how you'd do what you want using the jQuery library.
$('a.current-page').click(function() { return false; });