Hi ,
To display a default search text , you can try something like this.
jQuery('.lia-search-input-message').val('Search HELLDIVERS Forums');
NOTE: If you do this ,you would have to include a script for making the value empty , on click.
Something like ,
$('.lia-quilt-column-06 .lia-search-input-message').focus(function(){
if($('.lia-quilt-column-06 .lia-search-input-message').val()==fillerText)
{
$('.lia-quilt-column-06 .lia-search-input-message').val('');
}
});
$('.lia-quilt-column-06 .lia-search-input-message').focusout(function(){
if($('.lia-quilt-column-06 .lia-search-input-message').val() =='')
{
$('.lia-quilt-column-06 .lia-search-input-message').val(fillerText);
}
});
2. I am not sure of this (as I cannot see the site) but to display some text beneath the search box , you can use something like this.
jQuery('.lia-search-input-message').after(jQuery('<p>This is your text</p>'))
You may have to change the selector as per your requirement , and you can make it more specific if needed. But I hope it gives you an idea.
Thanks,
Sam