Three things are wrong. First, your access list will deny the "host" 61.0.0.0, which doesn't exist. Second, the access list blocks everything, since there is an implied "deny any any" at the end of every access list, unless you put "permit any any" at the end. Third, you do not mention applying the access list as an access group on an interface, so the access list has no effect.
Since you only want to block based upon the source IP address, there is no need for an extended access list. Use the following commands:
access-list x deny 61.0.0.0 0.255.255.255
access-list x permit any
where x is between 1 and 99. Then, on an interface, enter the command "ip access-group x (in|out)". In and out refers to the direction data is taking with regard to the interface you are configuring. Be sure to specify an interface and direction that is consistent with a source address in the 61.0.0.0 network.
Good Luck!
Mark