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.