Hello
I use standard #showWeblogSearchForm($model.weblog false) it generates
this code:
<form id="searchForm" method="get" action="/about/search"
style="margin: 0; padding: 0" onsubmit="return validateSearch(this)">
<p>
<input type="text" id="q" name="q" size="10"
maxlength="255" value="" />
<input type="submit" value="Search" />
</p>
</form>
I need to remove style="margin: 0; padding: 0" since it totally corrupt my CSS.
Is any way to do this?
Also,.. it would be very handy to have id distribute not only for input>text
but for input>submit as well.
And It would be very usefull to have some varible in $model or somethere else
to keep action URL there. In this case I could design my own form as I need
it and not use #showWeblogSearchForm.
Thx
Eu