Hey Rhonda,
Thanks for the reply. No prob, sorry for the delay on my part, thought I subscribed to email notifications on this post and wasn't.
Yep it's a musician profile 1.0.
I just solved the problem though.
The above code is for customizing the location of left column apps. My app was previously configured to be install in the left column. The above code worked great to position it. Then I updated my app and switched it to the right column to take advantage of the additional width it provides. I recently found out that you need different code to position left side apps vs right side apps. Here's the code that works to position the right side (column) apps:
<style>
table table table.userProfileApp {position:relative; top: 400px; left: 10px; z-index:9; border:none}
</style>
(Not sure why the left column app positioning code worked on a right column app when removing all the custom profile code but maybe I was mistaken and it didn't work at all, or some anomaly. Not too sure..)
And for reference to anyone else that needs this left column code:
LEFT COLUMN APP POSITIONING CODE BELOW
<style>
table.userProfileApp {position:relative; top: 400px; left: 10px; z-index:9; border:none}
</style>
Thanks,
Dino