Inline Button?
-
Hi There,
I’ve used the below code to add a search button, but its appearing underneath the search field. How can i get it so it sits just to the left of the search field inline? I’ve stripped all my themes css away and still cant work it out. Currently using the storfront theme.
`add_filter(‘aws_searchbox_markup’, ‘aws_searchbox_markup’);
function aws_searchbox_markup( $markup ) {
$pattern = ‘/(<input\s*type=\”text\”.*?\/>)/i’;
$markup = preg_replace( $pattern, ‘${1}<button class=”aws-icon”>Search</button>’, $markup );
return $markup;
}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Inline Button?’ is closed to new replies.