Hi mwoodard1,
I looking at the CSS on the page provided, it looks like your theme is making the first widget in that widget area full width (see below). It is the .flexible-widgets.widget-area .widget:nth-of-type(1)
part. Then all subsequent widgets are 50% of the width of the container.
.flexible-widgets.widget-full .widget, .flexible-widgets.widget-area .widget:nth-of-type(1), .flexible-widgets.widget-halves.uneven .widget:last-of-type {
width: 100%;
}
Also, it seems like the widget area you are using has the class widget-halves even
. In looking at the demo site for the theme you are using, they have three widgets in a row (which I assume is what you are looking for), but the widget area has the class widget-thirds
. Is there are way on the backend to change the class on the widget area to thirds? This might solve the issue you are having.
Let me know if that works, or if I can provide further assistance.
Nick