Forum: HTML and CSS Dec 6th, 2008 |
| Replies: 2 Views: 5,230 Some of that (changing the colors of the text and whatnot) you can do with CSS styles. The rest (changing the actual text) requires that you use a scripting language like Javascript.
For the... |
Forum: HTML and CSS Feb 22nd, 2008 |
| Replies: 9 Views: 2,773 Actually, using HTML would make the project impossible, not more difficult.
HTML (along with CSS) is just a way to mark-up and present information. It helps you organize content on a website.
... |
Forum: HTML and CSS Feb 6th, 2008 |
| Replies: 5 Views: 765 You need to change the quotes around your doctype stuff. Notice how they slant in and out? That's a special type of quote (probably created an an escape sequence), that doesn't work for quoting... |
Forum: HTML and CSS Jan 26th, 2008 |
| Replies: 9 Views: 2,773 Building a forum from scratch would be an interesting project... but long and unnecessary unless you're really interested in learning how to do it.
If you want to get something off the ground... |
Forum: HTML and CSS Jan 26th, 2008 |
| Replies: 7 Views: 1,857 I think that paints the problem with far too broad a brush. Why would you have to get rid of all hover images in order to be handicap accessible?
Example. A hover image could be used to change... |
Forum: HTML and CSS Jan 21st, 2008 |
| Replies: 2 Views: 3,282 Not sure if there's any way to do this in a real drop-down menu, but you achieve something similar with a little out-of-the-box thinking.
Instead of using a dropdown form item, build a css menu -... |
Forum: HTML and CSS Jan 19th, 2008 |
| Replies: 7 Views: 1,857 And to take this one step further and answer the original question...
I'm thinking you need to change
.ivt ab:hover {
to...
.ivt a:hover b {
In the original example, you're looking for a... |