How do I get the background color to extend the length of the grid please?
This of course would need to be responsive which it isn't at the moment. How to I make text slightly smaller and it work on mobile?
I'm basically trying to make this look the same as the SEARCH heading to the left.
This is a support forum for questions about Toolset plugins. For general questions about HTML and CSS you should really be asking in places such as Stack Overflow.
In your example above your text is included inside span tags. Spans are inline elements, meaning they don't start a new line and only occupy as much width as their content. Divs are block-level elements, starting a new line and occupying 100% of the containing element width.
So you could make that block full width by either changing your span to a div, or by adding a style rule to the span to set display: block, when it will behave as if it is a block-level element such as a div.