-:] CSS / JAVA Links
1. An easier way to add css to your web pages is as follows.
2. Open a text editor [note pad] and add you CSS for your links, scrolls... it should look somethinf like this here.
3. Now once you add the CSS save it as css.css.
4. Upload the css.css file to your FTP.
5. Add this link <LINK REL=stylesheet HREF="css.css" TYPE="text/css"> to your html files that you want your CSS to show up at.
6. Now for a javacsript you do da same thing.
7. Take you java code and put it in Notepad should look like this here.
8. Save it as java.js and uplaod it to ur FTP.
9. Then add this link <script language="javascript" src="/java.js"></script> to your html files that you want your javascript to show up at.

   !!You do not need to include the <style type="text/css"><!-- or <script language="JavaScript1.2"> //--></script> parts of the codes when you edit it in notepad.


-:] Transparent IFrmaes and Scrolls
1. In you Iframe code add this to it. [style="filter:chroma (color=#808080)"] see example here.
2. This code will ERASE all #808080 color items.
3. Now add to all your content that you want to appear in the Iframe a background color of #808080
4. The code will take out the background color #808080 thus makin it Trasnparent.
5. Do Not use the color #808080 with any thing else is in the IFRAME such as text or link colors cuz It will not show.
6. Now to make your scroll bars transparent add the followin code.
   <style type="text/css"><!-- body{scrollbar-track-color:#808080;
   scrollbar-highlight-color:#808080;
   scrollbar-3dlight-color:#FFFFFF;
   scrollbar-darkshadow-color:#FFFFFF;
   scrollbar-shadow-color:808080;
   scrollbar-face-color:#808080;
   scrollbar-arrow-color:#808080} //--></style>


-:] Add a Title to your webpage.
1.Add this code.
<title> Your Title </title>


-:] CSS - all in one
1.Here is CSS codes all in one piece.
<style type="text/css"><!-- body{background:#808080;
{scrollbar-track-color:#808080;
scrollbar-highlight-color:#808080;
scrollbar-3dlight-color:#808080;
scrollbar-darkshadow-color:#808080;
scrollbar-shadow-color:808080;
scrollbar-face-color:#526C8F;
scrollbar-arrow-color:#526C8F}
a:link{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:active{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:visited{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:hover{font-family:arial;font-size:11px;color:#95B9DD;text-decoration:overline underline;}
body, table, tr, td {font-size:11px;
font-family:arial;
color:#FFFFFF;
text-align:left;}
b
{color:#A7BDDB}
i
{color:#888E98} //--></style>