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
CSS can't do that. CSS is for presentation only. Your options are:
href attribute in your tags.class, and remove their href or onclick attributes accordingly. jQuery would help you with that (NickF showed how to do something similar but better).