Hallo,
leider stimmt die Gesamtbreite von 1030px nicht mehr, wenn ein Boxed Style verwendet wird.
Durch margin: 0px 50px; verbreitert sich der containder um 100px. Die Breite steigt damit auf 1130px.
Scheint wohl ein Bug zu sein. Wie kann ich die Gesamtbreite auf die eingestellten 1030px begrenzen?
danke
Hi gmmediadienste!
You can add this on Quick CSS or custom.css to reduce the width of the Boxed Layout:
@media only screen and (min-width: 1140px) {
.responsive .boxed#top {
width: 1030px;
}
.responsive .container {
width: 930px;
}
}
Cheers!
Ismael
thank you, but that makes the sidebar extremely small. only 119px :(
Hey!
You need to decrease the width of the “.responsive .container .nine.units” on css > grid.css. Look for instances of this selector then decrease the width to increase the width of the sidebar.
Best regards,
Ismael
thanks