-
Innerhtml
HI
how can make text(This will change the status of the records.) in bold and color and increase font size in the following tag
<helpgrid id="changestatus_help" innerhtml="This will change the status of the records." />
Any help.........................:)
-
Re: Innerhtml
Code:
<b>
<font color="red">
html text here
</font>
</b>
is how I would do it in html. But I don't know what innerhtml is :P
-
Re: Innerhtml
Hi there ajay696,
and a warm welcome to these forums. ;)
CSS is the recommended method to use for the presentation of your pages.
Place this in the head section of your document...
Code:
<style type="text/css">
#changestatus_help {
font-size:24px;
font-weight:bold;
color:#f00;
}
</style>
Further reading:-
coothead
-
Re: Innerhtml
Wow... I haven't seen a <font> tag for years. Here's to 1999 :bigyello: