<style>
{! hide bottom links http://spiff-myspace.blogspot.com -!}
table div {display:none}
{! bring back stuff we do not want to hide; ad banner; url -!}
div table div {display:block;}
table table div {display:block;}
{! additional line if you have a custom div !}
table div.YourCustomDivName {display:block}
</style>
Hide the bottom links and get rid of the Grey (Keep the cc thing):
<style>
{!- ditch bottom links leave cc; http://spiff-myspace.blogspot.com -!}
table div div {display:none}
div table div div {display:block;}
table div div table {display:block;}
{!- gray background; effects url -}
table tr {background-color:transparent;}
</style>
If you now want to restore the white color, to the URL, which was lost with the above, add this block:<style>
table.userProfileURL table tr {background-color:white}
</style>
If you have a custom div, which has a combination of inline and block elements, you may need to set the display for the inline objects. Using block for inline objects, and inline for block objects, can cause appearance issues.However, if I am going to display:none at one level, and undo it at another level, I have to choose either inline or block.