If you add a module class suffix to a module (in Advanced Options on module edit screen),
you can then style it using CSS.
For Example:
Add “-mysuffix” as a Module Class Suffix to both modules.
.custom-mysuffix {
width:50%;
float:left;
}
This would set them to 50% of the width of their parent and they would also be side by side.
It is important to note that if you wanted to add margin or padding (as these divs would be right next to each other with no gap), then you couldn’t set them both to 50% as the margin and padding would add to the width.
If you are using a fixed width template, then calculate what 50% would be and then subtract your left/right margin/padding. For example if using 960px:
.custom-mysuffix {
width:440px;
padding:20px;
float:left;
}
960px / 2 = 480px – (20px left padding + 20px right padding) = 440px
Hope this helps.