s_ff_da_b_ff Posted July 13, 2008 Share Posted July 13, 2008 is it true that I need whatever:hover inorder to get my vertical CSS pop out menu to work (without using JS)? And if so where can I get my hands on it I can not seem to find it anywhere on the net. And if you have any other suggestions other that whatever:hover please tell. Thanks Quote Link to comment Share on other sites More sharing options...
xtopolis Posted July 14, 2008 Share Posted July 14, 2008 http://www.cssplay.co.uk/menus/flyoutt.html Quote Link to comment Share on other sites More sharing options...
s_ff_da_b_ff Posted July 14, 2008 Author Share Posted July 14, 2008 Thanks. And another question -- Am I able to draw from more then one style sheet when working on one particular HTML page? THANKS Quote Link to comment Share on other sites More sharing options...
haku Posted July 14, 2008 Share Posted July 14, 2008 Yes, you can have as many as you want. One thing to keep in mind is that with CSS, if you declare something twice, the one that comes last will be the one that matters. For example if you have a.link { color: red; } and somewhere else you have a.link { color: blue; } Whichever comes last will be the color of the links. So if you have both those declarations in the same document, and the blue one is second, then the links will be blue. If they are in separate documents, then whichever document comes second will be the one that matters. So if you have doc1.css and doc2.css, and the red links are in doc1.css, and the blue links are in doc2.css, and in the head of your document doc2.css comes after doc1.css, the links will be blue. Quote Link to comment Share on other sites More sharing options...
s_ff_da_b_ff Posted July 14, 2008 Author Share Posted July 14, 2008 Thanks, but that isnt exactly my problem. I made a new thread if you will please read and help me there. thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.