How to resize middle column?
Posted: Sat Oct 16, 2010 2:21 am
I want to completely disable the left column, (did already) and have the middle column take the space of the left column. How can I do this?
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Code: Select all
}
#column_left {
float: left;
[b]width: 0px;[/b]
margin-right: 10px;
clear: left;
}
#column_right {
float: right;
width: 180px;
margin-left: 10px;
clear: right;
}
#content {
[b]margin-left: 0px;[/b]
margin-right: 190px;
margin-bottom: 10px;