4
votes
How do I use CSS in Django?
More generally stated, you're asking how to serve a static file from Django. If you are running under Apache, you should read …
0
votes
How to change background-color on text links on hover but not image links
The following should work (untested):
First you
a:hover { background-color: #fff; }
Then you
a:imagelink:hover { background-color: inherit …
1
vote
Fixed font size in firefox?
The only guaranteed way to have this level of control is to render the text as images. Although this can work OK for menus (which don't change that often), I've seen it horribly abused by sites whe …
0
votes
menus that expand when you mouse over, done purely via CSS?
Google is your friend css menus.
Also, checkout Eric Meyers page on …
0
votes
css, underline, possible to increase gap
This is not exactly what you were asking for, but it was an interesting read on the subject:
CSS Design: Custom …
