Column margin options
Hello,
I wrote this code to justify the right and left as shown in screenshot:
#Content .column, .columns {
float: left;
margin: 0 0% 40px;
}
#Action_bar .column, .columns .one.column {
width: 100%;
margin: 0 0% 0px;
}
.three-fourth.column {
width: 77%;
}
But it has also affected other elements. Can we separate codes for column?
Comments
This is the reason why we do not recommend to change values for main sections like columns. If you want to change something in one section, you must set class name per section and then do this css per sections. Otherwise, you get what you showed above.