Abbey, I have noticed that you are doing a lot of small modification on your site via CSS. I recommend you to start using such tool as Firebug for Firefox. It is quite handy when you need to find out which styles needs to be changed to hide certain blocks.
For example "Most discussed" tab for links, using "inspect element in Firebug" option on right mouse click you can find out that you will need to set ._2 to "display_none" to hide this tab:
._2 { display:none;}
For "Latest" it will be "._1".