@mscrawford5 You could resize and move the regions, but it’s not recommended too much. for instance, I have this in my css files to make my regions look the same…
/* Left Regions adjustment */
.region.left {
text-align: center;
min-width: 500px;
}
/* Right Regions - set minimum width */
.region.right {
text-align: center;
min-width: 500px;
}
my left regions are covered by CX2 in daily mode, my right is my clock, room temp, etc, and was CXMM… (I’ve started writing my own that’s independent of CX/CX2 so I can show multiple months etc without hacking)
edit: I forgot that I had to fix some things within CX2 to make it look right too:
/* CalExt2 - Adjust slot size */
.CX2 { /* default values which are used frequently or dependently */
--row-min-width: 100px; /* Height */
--row-max-width: 500px;
--column-min-width: 500px; /* Width */
--column-max-width: 500px;
--font-size: 16px;
}