You are herecss

css


Theme Changes between Drupal 6 and Drupal 7

Drupal 7 is coming, like it or not! With the upcoming release, many theme designers are anxious to know what they'll have to do to migrate their existing Drupal 6-compatible themes to make them work with Drupal 7. Here are the changes I found most interesting:

CSS Fix: Background Image Appears on FireFox but not IE

Have you ever rewritten some CSS, only to discover that the background image of your page's body element works in FireFox, but not Internet Explorer?

FireFox is just a little bit better at filling in the details for misconstrued CSS rules than IE7. If you're using the background pragma to define all the attributes at once, make sure you define everything, not just the attributes you want to change. For example, do this:

background: #e5e5e5 url(img/body.gif) repeat fixed top left;

...as opposed to this: