This has been killing me - the CMS that I'm working with only allows for inline CSS. Would it be possible to code this with only inline CSS?: http://d.pr/i/MVor (where the menu links on the left will change the video displayed accordingly) Thanks!
I don't think this is possible without events, can you add javascript somewhere? or if you can edit anchors on menu to add "onclick" or similar?
Why would even consider using a CMS that does not allow basic good practice like external stylesheets. Without seeing it or knowing its name I already know it is junk. Get rid of it and if you actually want to do something creative and/or relevant then either develop your own code or find something that does not put you in handcuffs, a blindfold, and boxing gloves when you need to thread a needle.
That right there is probably the best advice you could be given. My "what a pile of crap" sense started tingling with the OP's first sentence.
You could just update to a better CMS as others have said. It does seem odd that it only allows for inline. If you are open up the file in dream weaver or even in a text document you should be able to add an external style sheet. I know some of these CMS scripts are difficult to rework the entire code but, if you want to get into that you can. Sometimes the administration area of the script will give you options or an area to paste your code in. As long as you can use JavaScript then you can get that menu to work the way you want. By using the DOM or document object model you can change css properties. For example. document.getElementById("element").style.backgroundColor="blue"; So when they move their mouse over the item it turns the color you want. So I guess it comes down to whether or not you can use JavaScript. Hope that helped