Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

In my global.css, I added a margin-bottom to my grid entries via

.grid-3 {
    margin-bottom: 20px;
}

I want it to be bigger (40 pixels instead of 20 pixels) on all non mobile devices. I therefore added the following to my default.css (and tried also with narrow.css, normal.css, and wide.css), but the margin on my widescreen device stays 20 pixels.

.grid-3 {
    margin-bottom: 40px;
}

When I add the code twice to default.css, the margin is changed as I want.

.grid-3 {
    margin-bottom: 40px;
}
.grid-3 {
    margin-bottom: 40px;
}

Is this a bug in the Omega code? I have the same issue with any CSS styles I want to add to default.css.

share|improve this question
I'm 99% sure this isn't an omega bug, I have dozens of sites based on that theme and that's never happened for any of them. 'Fraid I don't know what the issue is, but I don't think it's that. – Clive May 25 at 11:15
Sorry, my code was missing a "{" in a very different place. Thank you for your help! – deinqwertz May 25 at 14:52

closed as too localized by kiamlaluno May 25 at 16:17

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.