Thanks for the info. The ticker is setup to be responsive, but it requires the parent container to have some sort of width. The elements the ticker is contained in causes some issues on this.
Please see the following screenshots, instructions and custom css to resolve this below: https://imgur.com/a/K5dY8n2
1. First, remove the set width on the ticker so it is responsive.
2. The widget is contained in an element with a class of .pull-right which is floating it to the right. You need to override this (or remove it somehow) so that parent element is the full width of the column.
3. The widget itself has a display of table-cell which doesn’t give it a width. You need to turn this into a block level element. (I also added a width of 100% in the css below but it’s only necessary depending on the position of other floated elements.)
4. Set a float right to the social widgets, if you want them floated right.
Here is the custom css to make all this happen:
.site-header .logo-row .pull-right { float: none !important; }
#mtphr-dnt-widget-3 { display: block !important; width: 100%; }
#widget-social-icon-box-7 { float: right; }