diff --git a/src/components.scad b/src/components.scad
index d5819b5..b9c24c5 100644
--- a/src/components.scad
+++ b/src/components.scad
@@ -261,7 +261,7 @@ module frame_box() {
 }
 
 module frame_mount_column() {
-	cube([20, 20, frame_z], center=true);
+	cube([frame_mount_column_width, frame_mount_column_width, frame_z], center=true);
 	// add some corners back to do a lame chamfer
 	linear_extrude(height=frame_z, center=true)
 		polygon([[10, 10], [-20, 10], [10, -20]]);
diff --git a/src/parameters.scad b/src/parameters.scad
index 51a3190..f00e5a1 100644
--- a/src/parameters.scad
+++ b/src/parameters.scad
@@ -42,6 +42,9 @@ frame_center_to_neutrik = 70;
 // depth of the "lip" of the frame that the top plate sets into/supports the overhang
 frame_wall = 4;
 
+// width of the column in the frame corners to support the hex bolt
+frame_mount_column_width = 20;
+
 // per neutrik (mm)
 neutrik_panel_thickness = 3;