In Ja Mitius the width of the left column (span4 in the css) is too wide for my purposes.
In the widest responsive layoutI would like to reduce the size of the left column (or position-7 position-5) to 284px from the original 372px and widen the content area respectively.
The corresponding CSS is embedded in the plugin area and I haven’t been able to override it.
The original code is
@media (min-width: 1200px)
.span4 {
width: 372px;
}
and for the narrower left column is:
@media (max-width: 1199px) and (min-width: 980px)
.span4 {
width: 284px;
}
Essentially I would like to create an override that allowed me to do that. Is it possible?
Thank you.