Thread: Need html text script help
Results 1 to 3 of 3
Related
-
Rotating Text/Quotes Script? Forum: Javascript Forum
Replies: 96 -
Script to write text to a certain line of a file Forum: CGI Perl Forum
Replies: 1 -
Perl Script Text Output? (w3c validator) Forum: CGI Perl Forum
Replies: 0 -
change html-text with a js-function Forum: Javascript Forum
Replies: 1
-
06-12-2010, 10:20 AM #1
Need html text script help
Hello guys.
ok heres what i got
HTML Code:<table width="825" border="0" cellspacing="0" cellpadding="0" height="700"> <tr background="box 1.jpg"> <td><center><font size="+10"><font color="white">Welcome</font></font></center></td> </tr> </table>
Last edited by HTML; 03-09-2012 at 08:38 AM. Reason: forgot something
-
06-12-2010, 11:11 AM #2
Re: Need html text script help
ok guys i got it..sry..but here to anyone who might have the same prob heres how i fixed it.
HTML Code:<table width="825" border="0" cellspacing="0" cellpadding="0" height="700"> <tr background="box 1.jpg"> <td><font size="+10"><font color="white" style="position: absolute; top: 12px; left: 12px;">Welcome</font></font></td> </tr> </table>
Last edited by HTML; 03-09-2012 at 08:39 AM.
-
08-01-2010, 01:58 PM #3
Re: Need html text script help
You want to try and learn CSS a bit more - a lot of what you've typed is obsolete - you're learning stuff that is out of date.
Place this in the HEAD pasrt:
Code:<style type="text/css"> table.nice { width: 825px; border: none; border-spacing: 0px; } table.nice tr { background-image: url('box 1.jpg'); } table.nice td.titlebit { color: #fff; position: absolute; top: 12px; left: 12px; } </style>
Code:<table> <tr><td style="titlebit">Welcome</td></tr> </table>