Problem:
If you have a blog owner in blogger and used the "Search in This Blog" widget, you can see this size is very large and taking lot of spaces in your blogSolution:
Use below code at the end of your blogger XML file
<script>
function r_search() {
var r_place_s="h2";
var r_place_t="h5";
var Attribution1=document.getElementById("CustomSearch1");
var Attribution1_html=Attribution1.innerHTML;
var regex = new RegExp( '(' + r_place_s + ')', 'gi' );
Attribution1.innerHTML=Attribution1_html.replace( regex, r_place_t );
}
r_search();
</script>
0 comments:
Post a Comment