Hi,
You can make its contents display in a row by adding this css:
.header-widget {
display: flex;
}
But you’ll probably come across a cropped view of the other plugin.
In this case, you’ll have to resize the width of the widgets so they can fit within the available space.
Consider setting the min-width of .dgwt-wcas-sf-wrapp
so both widgets fit in a row.
example:
.dgwt-wcas-sf-wrapp{
min-width: unset;
}
A wise man once said:
"Have you cleared your cache?"