How to get label/fields to appear differently based on Media Query
Hello,
I would like to use Media Queries to change the way grid label/fields appear.
If it's has max-width of 500px, I would like the label to appear above the field. If it is >500px, then I would like the label to appear to the left of the field.
I've tried something like
...
.mceGridLabel.siebui-label.mceLabel, .mceGridField.siebui-value.mceField{
display:inline-block;
}
...
but it doesn't seem to work. The label still appears above the field.