<style type="text/css">
td.text table {visibility:hidden};
</style>
--Hide right side and remove the space it occupied<style type="text/css">
td.text table {display:none};
</style>
-- remove blog area myspace
-- how do i hide my blog area only on myspace
<style>
table.latestBlogEntry {display:none;}
</style>
-- hide white space myspace
-- blank space after removing blog & extended network
-- how do you remove the white space where your extended network box used to be
[This is moot if the blogs and extended network are hidden using the above code. No more white space problem. If you have a whitespace problem, keep reading, and use the code I have here instead of the code you now have.]
-- hide extended network and move up my about me
-- hide extended network and move blogs up
<style>
table.extendedNetwork {display:none;}
</style>
-- remove blog and extended network no white space
-- hide extended network and blogs and move up my about me
<style>
{! hide extendedNetwork and blogs !}
.extendedNetwork {display:none;}
.latestBlogEntry {display:none;}
{! due to carriage returns we need to move the blurbs up slightly !}
{! first I control the size of the carriage return so the distance is the same on different browsers !}
br {line-height:12px;}
.blurbs {position:relative; top:-24px; margin-bottom:-24px;}
</style>