Menu question
Problem
2 column elastic, left sidebar. How can I control the sidebar with another style sheet?
Solution
I have no idea to a solution
Detailed description
Hello,
I am still learning CSS and wish to create a fictitious website; for learning purposes. My goal is to manage the sidebar with a second style sheet; how is this done?
Text ID:
MENU_QUESTION
Comments ()
To add a comment, please
Log in.
To clarify
by Mr. Marc on March 16, 2009
As MicahBurke had put rather briefly, all you need to do is create another CSS file and place all your styles for your sidebar in that file. Then all you need to do is reference this second stylesheet along with your main one.
One way would be to add another <link> element or "@import" rule, but I personally prefer creating a "master.css" file, and importing all my different styles in there.
Easy!
by MicahBurke on March 3, 2009
Add the call out for the other stylesheet in the header of the html file. Put all your sidebar code there.