So here is the problem. I have created a Facebook page am using the Static FBML application which allows you to create custom tabs on the page, using FBML (FaceBook Markup Language). The thing with FBML is that is like a reduced version of HTML with some extra special Facebook tags. So the FBML I write gets rendered on the page within the body tag. Now if there was just one custom tab I was creating then I could use a style tag and put the styles about the FBML, but I have multiple tabs and want them all to use the same stylesheet. Normally when linking to an external style sheet you would use the link tag, but I cannot do that here since the link tag has to be in the head section. What is another solution for me to use a common style sheet across all the tabs?
EDIT Just a side note. I have just learned that you are not supposed to put a style tag within the body section of a document, so what I said about about putting a separate style tag in each tab before the FBML wouldn’t be valid code. However this still does not solve my problem about how to link all the tabs to a single css file.