How do I get more than six headings using HTML? Can I move paragraphs to different locations using CSS?
I am trying to make a lot of the website using HTML text rather than graphics text since it is much sharper. For instance, I want my main heading (the name of the site) to have a shadow effect by placing the two lines, slightly offcenter from on another. I am using all headings for these but am running out at six. Obviously, I am doing something wrong. Perhaps it has to do with moving paragraphs to different locations. Any comments.
Public Comments
- Just use classes or identities. You can give something an id in CSS with a # and then the ID name: h1#myID{} and then in HTML <h1 id="myID"> or a class using a . : h1.myClass{} and <h1 class="myClass">.
- You can use css to generate a shadow effect (try http://www.workingwith.me.uk/articles/css/cross-browser-drop-shadows for a cross-browser solution). Not sure what you mean by 'moving paragraphs' - if your absolutely positioning text to achieve your shadow effect, that would not change anything with your headings. CSS-3 will offer alot more on that front (http://dev.opera.com/articles/view/css-text-shadows-and-background-sizing/)
- look into behaviors htc files...
Powered by Yahoo! Answers