How do I make text bigger???

liunx

Guest
How could I make the Business Marketers text bigger on this site:<br />
<br />
<!-- m --><a class="postlink" href="http://members.cox.net/businessmarketers/">http://members.cox.net/businessmarketers/</a><!-- m --><!--content-->try headers such as: <br />
<h1>Business</h1><br />
<h2>Business</h2><br />
<h3>Business</h3><br />
<br />
h1 is the biggest, h2 is smaller, etc. all the way thru h6 which is the smallest<!--content-->Style in the head<br />
<br />
( my basic stylesheet, delete or change to what you need)<br />
<br />
<STYLE TYPE="text/css"><br />
<!--<br />
A:link { text-decoration: none; color: #000000 }<br />
A:visited { text-decoration: none; color: #990000 }<br />
A:active { text-decoration: none; color: #0000FF }<br />
A:hover { text-decoration: underline; color: #FF0000 }<br />
<br />
.klgrn {background-color: #669999;}<br />
.klgl {background color: #FFCC00;}<br />
.info {font-family:verdana, tahoma, arial, ms sans serif;font-size:52pt;}<br />
.menu {font-family:verdana, tahoma, arial, ms sans serif;font-size:9pt;}<br />
BODY { scrollbar-3d-light-color:#FFFFFF;<br />
scrollbar-arrow-color:#FFFF33;<br />
scrollbar-base-color:#e39be3;<br />
scrollbar-dark-shadow-color:#333333;<br />
scrollbar-face-color:#a40616;<br />
scrollbar-highlight-color:#999999;<br />
scrollbar-shadow-color:#cec553}<br />
--><br />
</STYLE><br />
</head><br />
<br />
in the body<br />
<div class="info">info</div><br />
<br />
<br />
:rocker:<!--content-->I see, the "Business Marketers" title text uses a JavaScript to make it flash that way. The text is defined at the first line of the JavaScript:<br />
message="Business Marketers"<br />
Putting HTML codes into the message variable's value would probably mess the whole thing.<br />
Try putting: <font style="font-size:26pt"> just before the first <script> tag, and put the ending </font> tag just after the ending </script> tag.<!--content-->Using CSS relies on having valid HTML.<br />
<br />
A few little [errors (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fmembers.cox.net%2Fbusinessmarketers%2F&charset=iso-8859-1+%28Western+Europe%29&doctype=HTML+4.01+Transitional&ss=1&outline=1&sp=1">http://validator.w3.org/check?uri=http% ... ine=1&sp=1</a><!-- m -->)] to have a look at. The non-obvious one is the need to change the closing tags found within document.write statements. For stuff like </span> you can either break it up into '</' + 'span>' or you can escape it by changing it to <\/span> instead. There is also a </font> tag to change in the same way.<br />
<br />
Add type="text/javascript" to all <script> tags.<br />
<br />
Add alt="some text" to all <img > tags.<br />
<br />
"Quote" all attribute values, especially any "#FFFFFF" colours.<br />
<br />
The tag ordering <center><h1> is allowed, but the reverse (which you have) is not.<br />
<br />
You need to add a character encoding declaration within the <head> section.<br />
<br />
Are you sure that you have the <h1> and </h1> tags in the correct place? These tags are used to show headings, not to provide a convenient way of having bigger text. The <h1> to <h6> tags are indexed by search engines to find the important content on a page. Use this [link (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fmembers.cox.net%2Fbusinessmarketers%2F&charset=iso-8859-1+%28Western+Europe%29&doctype=HTML+4.01+Transitional&ss=1&outline=1&sp=1">http://validator.w3.org/check?uri=http% ... ine=1&sp=1</a><!-- m -->)], scroll down to "Outline" and see what the search engines are going to be indexing your site with. Not what you intended, I expect.<br />
<br />
<br />
Small Extract:<br />
>>> var flashspeed=100 // speed of flashing in milliseconds var flashingletters=3 // number of letters flashing in neontextcolor var flashingletters2=1 // number of letters flashing in neontextcolor2 (0 to disable) var flashpause=0 // the pause between flash-cycles in milliseconds var n=0 if (document.all||document.getElementById){ document.write('<font color="'+neonbasecolor+'">') for (m=0;m<message.length;m++) document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'') document.write('') }else document.write(message) function crossref(number){ var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number) return crossobj } <<<<!--content-->
 
Back
Top