Sandi Posted March 1, 2009 Report Posted March 1, 2009 I'm new to CSS, but have a basic understanding of style sheets from Quark. I am working on a homework assignment for a dreamweaver class. I've created a style sheet called "seasons." The properties show up correctly in the "property inspector" window (blue, right size, etc.) and correctly under "properties for .seasons" heading. However, when I select text I want to apply the style to, and select the "season" style, nothing happens to the text. It doesn?t change on my screen and doesn't change if I test the file in a browser. All the other options are set to "none or default" I?ve even rebooted my computer. No dice. This is the code ... I'm trying to make the words Fall, Winter, Summer and Spring a shade of blue. Seasonal Gardening Checklist: Fall – The time to plant trees and spring blooming bulbs. Winter – The time to prune fruit trees and finish planting your bulbs. Spring – The time to prepare your beds, plant annuals, and apply fertilizer to established plants. Summer – The time to supplement rainfall so that plants get one inch of water per week. Any help will be greatly appreciated. PS I'm on a Mac if that is an issue.
falkencreative Posted March 2, 2009 Report Posted March 2, 2009 sounds like you simply need to add a bit of code to your CSS stylesheetm, or make sure this code is in your stylesheet if it already exists: .seasons { color:#[colorhere]; }
Sandi Posted March 2, 2009 Author Report Posted March 2, 2009 except it's not applying any part of the .season css ... not the font, not the color, not the size.
jlhaslip Posted March 2, 2009 Report Posted March 2, 2009 Try to be more specific with the style rule. ID's are stronger than classes. Change the align=left to id = "left" and apply the style as follows: div#left ul li .season { font-color: blue; etc... }
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now