|
-
Nov 30th, 2012, 12:00 PM
#1
Thread Starter
Registered User
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.........................
-
Nov 30th, 2012, 06:24 PM
#2
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
-
Dec 1st, 2012, 07:23 AM
#3
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
~ the original bald headed old fart ~
-
Dec 3rd, 2012, 05:43 PM
#4
Re: Innerhtml
Wow... I haven't seen a <font> tag for years. Here's to 1999
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|