HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Want new SSI Menu to look like my current Frames Menu
Post new topic   Reply to topic    HTML Help Forum Index -> SSI
View previous topic :: View next topic  
Author Message
smw51



Joined: 15 Mar 2006
Posts: 4

PostPosted: Wed Mar 15, 2006 2:03 pm     Want new SSI Menu to look like my current Frames Menu Reply with quote

My site http://www.ravencues.com/ was built with Frames. Even though I rank very high in relevant Google searches (custom cues, custom pool cues, pool cues etc) and it has a PR of 5, I think I can do better by losing the Frames. I want to switch to a SSI menu. That seems to make the most sense, but I don’t have experience with SSI. I’m trying to keep my regular html pages, with my tables, and just include the ‘new’ SSI menu in all of them.

I have made a test menu. I’ve read article after article on ‘includes’. My server is set up for SSI. I modified my ‘.htaccess’ file, although I don’t think I had to. I’m using the .html extension but using the .shtml extension yielded the same results. I made a test directory with a few menu samples and my ‘home’ page modified with the include statement <TR> <TD> <!--#include virtual="ssitestmenu.html" --> </TD></TR>. The ‘new menu’ shows up ( http://www.ravencues.com/test/home.html ) but it is just stuck at the top of the page. I can move it pretty much anywhere I want except where I really want it to be.

I want the new menu to look pretty much like my current Frames menu. That is I want the parsed menu to be on the left hand side of each page and stay the same size no matter what page is called. I know I have to insert the ‘include statement” into all of my pages. I might want to add a vertical scroll bar later but for no I just want it to look like a normal menu.

This is making me crazy. Any help would be greatly appreciated. Crying or Very sad
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8301
Location: Castle Pines North, CO USA

PostPosted: Wed Mar 15, 2006 3:33 pm     Reply with quote



Check out Included Content first. SSI is not a menu or code but more of a "way".

_________________
Corey
Loud Commerce | Loud Worx | Merchant Account Blog
smw51



Joined: 15 Mar 2006
Posts: 4

PostPosted: Wed Mar 15, 2006 4:03 pm     Thanks. I've read many similar examples. Reply with quote

Yes. As I understand SSI, in the limited context I want to use it in, it is a ‘method’ of displaying information. My regular html document has the ‘include’ code. The document I want to ‘include’ has the menu items with no normal html tags like <html>, <body> etc. I want to position the ‘new menu’ to the left of the normal html page. That is possible isn’t it?
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8301
Location: Castle Pines North, CO USA

PostPosted: Wed Mar 15, 2006 4:09 pm     Reply with quote

Well HTML cannot have the include code unless you are parsing the HTML as SHTML or PHP?

_________________
Corey
Loud Commerce | Loud Worx | Merchant Account Blog
smw51



Joined: 15 Mar 2006
Posts: 4

PostPosted: Wed Mar 15, 2006 4:48 pm     I'm pretty sure I've read that it can be done? Reply with quote

I am asking for help so I must say I don't know. I am working under the impression I can use the .html extension. Please see the copied info below. I’m an Apache Server if that helps.


"You don't need to use the traditional *.shtm and *.shtml filename extensions. You can ask your ISP to turn on SSIs for your entire site. Or you may be able to do it yourself without his permission by inserting a file named .htaccess in your root directory containing such lines as:
Options Includes FollowSymLinks
AddType text/x-server-parsed-html .html
AddType text/x-server-parsed-html .htm"
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8301
Location: Castle Pines North, CO USA

PostPosted: Wed Mar 15, 2006 5:14 pm     Reply with quote

Yes you can do this but it is not recommended because it could slow your site down and / or cause some extra load on the server. Another reason your ssitestmenu.html is parsed before it is added to your web page. You can do it - it is just not recommended. To prevent this, you might see if you can at least rename ssitestmenu.html to ssitestmenu.inc or ssitestmenu.txt. a bit more information How to Enable Server Side Includes on Your Web Server

I only asked that question because you made it sound like you had already did it.

Moving on though - when dealing with SSI, it is always better to supply your source code since server side includes are already parsed on the server before being rendered on the browser.

So I am going to guess.. First thing - in your ssitestmenu.html you have:
Code:
<style>
<!--
a{text-decoration:none}
//-->
</style>

<a href="mailto:?subject=Check out this pool and billiard website! &body=Here is a site you might like to look at. &body=RAVEN Custom Cues &body=RAVEN Custom Cues http://www.ravencues.com/"><font size="3" face="times new roman" style="color:black;"><b>Send to a Friend</b></font></a><br><br>

<a href="home.html" target="content"><b><font size="4" face="times new roman" style="color: black;">Our Main Page</font></b></a><br><br>

<a href="cues.html" target="content"><b><font size="5" face="times new roman" style="color: black;">RAVEN Cues</font></b></a><br><br>

<a href="about.html" target="content"><b><font size="4" face="times new roman" style="color: black;">About Us</font></b></a><br><br>

<a href="publications.html" target="content"><b><font size="3" face="times new roman" style="color: black;">Publications</font></b></a><br><br>

<a href="buyraven.html" target="content"><b><font size="4" face="times new roman" style="color: black;">How to Buy</font></b></a><br><br>

<a href="testimonials.html" target="content"><b><font size="3" face="times new roman" style="color: black;">What People Say</font></b></a><br><br>

<a href="notravencues.html" target="content"><b><font size="4" face="times new roman" style="color: black;">Used Cues</font></b></a><br><br>

<a href="repairs.html" target="content"><b><font size="4" face="times new roman" style="color: black;">Repairs</font></b></a><br><br>
Take a look at You just need to get rid of the included content again. You are awfully close.
Code:
<style>
<!--
a{text-decoration:none}
//-->
</style>
Since that is a style and belongs in the <head>And the place you seemed to include your ssitestmenu.html should be in the <body> where you want it. Currently you opening <body> tag is right after your code.

You need to add an extra cell / table and insert your code there. Start with something like
Code:
<table style="width:100%">
   <tr>
      <td style="width:25%; vertical-align: top;"></td>
      <td style="width:75%"></td>
   </tr>
</table>
and then
Code:
<table style="width:100%">
   <tr>
      <td style="width:25%; vertical-align: top;"><!--#include file="ssitestmenu.html" --></td>
      <td style="width:75%"></td>
   </tr>
</table>
You can use virtual - jsut be sure to keep in mind that this wil push it back to the root (types of hyperlinks)

Start with the code above first and then in the <td> tag that is 75% - this is where your content will go. To start here is an example:
Code:
<table style="width:100%">
   <tr>
      <td style="width:25%; vertical-align: top"><!--#include file="ssitestmenu.html" --></td>
      <td style="width:75%">RAVEN Custom Cues specializes in high quality handcrafted one of a kind pool cues. Custom-made two-piece cues are built to our exacting specifications. Collectible, hand made cues for pocket billiards built by a custom cuemaker with high standards and integrity. This billiard site includes pool cue images, pricing and ordering information. </td>
   </tr>
</table>


_________________
Corey
Loud Commerce | Loud Worx | Merchant Account Blog
smw51



Joined: 15 Mar 2006
Posts: 4

PostPosted: Thu Mar 16, 2006 5:41 pm     I'm not sure it is exactly right but it is getting closer! Reply with quote

Corey;

First of all, I want to thank you for your assistance. Second, I thought I gave enough of the code I was using but I should have given it all. You were correct about how I had structured ssitestmenu.html.

I’ve been testing the code you gave me and I have something that closely resembles what I was looking for http://www.ravencues.com/test/home.html . Essentially what I have done is just copy my previous ‘home.html’ into the space you provided. I renamed the include ‘ssitestmenu.txt’, and it seems to work just fine. It seems a little strange that I have <table> preceding the <body> and </table> following </body>. Did I misinterpret what you meant for me to do? I tried moving the <body></body> tags outside the ‘new’ <table></table> but the spacing got weird. I can tell I’ll probably have to change my original <table width=> statements. I can also remove the horizontal menu I had so people could navigate when the page was displayed without the frames menu.

The ssitestmenu.txt looks like this:

<style>
<!--
a{text-decoration:none}
//-->
</style>


<a href="javascript:window.external.AddFavorite

('http://www.ravencues.com', 'RAVEN Custom Cues')"

style="font-size:15px;color:black;font-family:times new

roman;"><b>Bookmark Site!</b></a><br><br>

<a href="search.html" target="content"><b><font size="3"

face="times new roman" style="color: black;">Search This

Site</font></b></a><br><br>

etc.

Here is the entire home.html page as it is now:

</head>





<table style="width:100%">
<tr>
<td style="width:15%; vertical-align: top"><!--#include file="ssitestmenu.txt" --></td>
<td style="width:85%">

<body bgcolor="#E6E6E6" topmargin="0"> <center>


<table border="0" cellpadding="0" cellspacing="3">


<tr><td align="center"> <img src="images/logo2.gif" alt="Raven Custom Pool Cue and Billiard Cues - to ravencues.com"></a></center></td></tr>


<tr>

<td align="center"><font size=1 style="color: red;"><a href="riskfree.html">RAVEN Pool Cues are Risk Free!<br><br></a></font>

</td> </tr>

<tr> <td align="center"> <img src="images/b.gif" alt="Raven Custom Pool and Billiards Cues Main Image"> </td> </tr>


<table width="600">



<tr><td align="center"><font size=3 face="times new roman" style="color: black;"> <b> RAVEN Custom Cues specializes in high quality handcrafted one of a kind pool cues. Custom-made two-piece cues are built to our exacting specifications. Collectible, hand made cues for pocket billiards built by a custom cuemaker with high standards and integrity. This billiard site includes pool cue images, pricing and ordering information.</b> <br><br> </font></td></tr>



</table>

<font size=1 face="times new roman">
&nbsp;&nbsp;&nbsp;<a href="index.html" target="content"><font size=4>Main Page</font size=3></a> | <a href="cues.html" target="content"><font size=3 color="brown"><b>RAVEN Custom Cues</b></font size=3></a> | <a href="search.html" target="content">Search this site</a> | <a href="http://www.ravencues.com/cgi-bin/Agora/agora.cgi" target="_blank"> <font size=3 color="red"><b>New Discount Internet Store</b></font></a> | <a href="tradeuppolicy.html" target="content">RAVEN Trade Up Policy</a><br>



<a href="o'sullivan.html" target="content">The Perfect Game</a> | <a href="warranty.html" target="content">Cue Warranty</a> | <a href="repairs.html" target="content">Cue Repairs</a> | <a href="cuecare.html" target="content">Cue Care</a> | <a href="playbetter.html" target="content">Play Better Pool</a> | <a href="taper.html" target="content">The RAVEN Shaft Taper</a> | <a href="testimonials.html" target="content">What people say!</a> | <a href="localtournaments.html" target="content">Local Tournaments!</a> <br>


<a href="whyraven.html" target="content">Why The Name RAVEN</a> | <a href="howraven.html" target="content">How a RAVEN Cue is Made</a> | <a href="accessories.html" target="content">Accessories</a> | <a href="contact.html" target="content"><font size=3>Contact Us</font size=3></a> | <a href="links.html" target="content">Links</a> | <a href="liteside.html" target="content">The Lighter Side of Pool</a> | <a href="poolmusic.html" target="content">Pool Music</a> | <a href="cueoptions.html" target="content">Options</a><br>


<a href="cueanatomy.html" target="content">Cue Anatomy</a> | <a href="actuallylostorstolen.html" target="content">Lost or Stolen Cue</a> | <a href="oldgrowthshafts.html" target="content">Old Growth Shaft Wood</a> | <a href="wedon'tdo.html" target="content">What We Don't Do</a> | <a href="nothanks.html" target="content">Custom Orders</a> | <a href="rules.html" target="content">Pocket Billiard Rules</a> | <a href="doityourself.html" target="content">Build Your Own</a><br>

<a href="othercues.html"target="content"><font size=2 color="dark blue"><b>2K Custom Cues</b> </font></a> | <a href="buyraven.html" target="content">How to buy a RAVEN Cue</a> | <a href="about.html" target="content">About Us</a> | <a href="appearances.html" target="content">Appearances</a> | <a href="collectors.html" target="content">For Cue Collectors</a> | <a href="engraving.html" target="content">Engraving</a> | <a href="celebs.html" target="content">Pool Pictures</a> | <a href="illustratedprinciples.html" target="content">Pool Videos</a><?font><br><?font><br>

<br>
<br>
Some Gallery Cues :<a href="cue42.html" target="content">Mosaic style inlays</a> | <a href="cue25.html" target="content">Ivory and Burl</a> | <a href="cue23.html" target="content">Ebony, Ivory, Turquoise</a> | <a href="cue49.html" target="content">Ivory, Paua, Malachite</a> |


</font>


<br>
<br>
<table width="600">

<tr><td align="center">
<h1 style="color: brown;">You deserve the very best pool cue!</h>
<br>
<br>


<h3 style="color: black;">
RAVEN Custom Cues uses only legally obtained materials like elephant ivory and exotic woods to build cues.
</h3>


<tr><td align="center"><h4>

The very best custom made pool cue is what every serious pool player deserves. If you are the pool player… think about it. Pocket billiards is your passion. Don’t you deserve the best quality cue stick you can afford? RAVEN Cues are built to the highest standards. RAVEN Custom Cues are featured in the 3rd Edition of the Blue Book of Pool Cues. They have a Lifelong Warranty and a Satisfaction Guarantee. They also feature the RAVEN shaft taper. "You'll be raving about your RAVEN."
<br>
<br>
Billiard Cue making has a long and rich history. It runs through legendary custom cuemakers like George Balabushka, Gus Szamboti, Burton Spain, Frank Paradise and Herman Rambo all the way back to the European craftsmen of the 1700s who first used marquetry in cuemaking. The creation of this functional art carries on with today’s master craftsmen and craftswomen.
<br>
<br>
A well made pool cue, snooker cue or billiard cue will last several lifetimes if it is cared for properly. Proper care of cue sticks along with how to choose the custom features that are appropriate for you are but two of the many different aspects of pool cues that are covered in this billiard website.
<br>
<br>
Pool cue sticks, billiard cues or snooker cues don't necessarily have to be expensive to be good. To be sure, there are some good pool cues for sale, even very good pool cues for sale, which are made by major manufacturers like Schon, Viking, Mcdermott, Joss, Predator, Meucci, and others. One of those cues, while quite playable, will always be limited in its value because it is one of hundreds or thousands of an identical model. There is nothing wrong with that, but most of us would rather have something special, something that is unique and ours alone.
<br>
<br>
A professionally made custom cue is just very different from a production pool cue. To begin with a custom billiard cue is usually built by a single craftsman. Typically it is a one-of-a-kind creation or a very limited run of a similar style. Unlike most production cues, the value of a custom made cue will often exceed its original purchase price by many times. Even though a custom cue is often more affordable than people tend to think it can be considered an investment rather than a purchase.
<br>
<br>
The inception of a custom made cue is usually something quite personal. It is most often either the cuemaker’s inspiration or that of his / her client. It can be the resulting collaboration of craftsman and client that creates a unique work of functional art. That result is a pool cue that fulfills the needs and requirements of its owner and displays the talent and craftsmanship of its creator.
<br>
<br>

If you are considering a pool cue or custom cue as a gift for someone else you have made a fine choice. RAVEN Gift Certificates are available in any dollar amount. They avoid the worry of making the wrong choice and allow the recipient to choose a cue with the features he or she needs in a custom pool cue. Just click on the email link below and put the words "Gift Certificate" in the subject line.

<br>
<br>
<h2 style="color: brown;">The billiard cue vs the pool cue.</h2>



In other parts of the world and even here in the United States pool cues are sometimes referred to as billiard cues, billiards cues, pocket billiard cues, pocket billiards cues, billiards ques or billiard ques. They are really the same thing. In the US we typically distinguish the game played on a table with no pockets as either Carom Billiards or Three Cushion Billiards. Games played on tables with pockets are either pool or snooker. True billiards cues (carom or three cushion) are generally built differently than pool cues. They are often, but not always, made with threaded wooden joints. They can have overwraps and their dimensions are a bit different from pool cues. The butts tend to be stiffer and the shafts also tend to be stiff as well.
<br>
<br>
<h2 style="color: brown;">Snooker cues.</h2>

British style snooker cues are made differently too. Besides the tip diameter generally being smaller than on a pool cue, the two pieces of the break down snooker cues are not of equal length. What we in the US would call the shaft section is longer than the shaft on an American pool cue. The butt section is much shorter than on a standard American pool cue. Point construction is what we in the U.S. typically refer to as butterfly points rather than sharp pointed spliced or inlayed points most common on US made cues. British style snooker cues also have a unique feature called a 'spade'. It is a flattened area on the butt of the cue. Snooker players now use it to always align the cue the same way and to grasp it in exactly the same spot. I would be happy to build a billiards cue for a client. The same is true with an American style snooker cue. American style snooker cues are typically just a longer, thinner, lighter versions of a hustler style pool cue. Both are somewhat different than pool cues, but their basic construction is the same. British style snooker cues are a different matter. It takes a specialized cuemaker to build one. Even though I would gladly build a billiards cue there are cuemakers who specialize in billiards cues just like I specialize in pool cues.


<br>
<br>



<table width="575">

<tr><td align="center">

<h2 style="color: brown;">Before and after cue pictures.</h2>



<h4>Below are a few Before and After pictures of Pool Cues. The pictures of cues on the left hand side are while the unfinished cues were in production by the cuemaker. The cue pictures on the right are after the cues were finished. Pay special attention to how the finish brings out the beauty of the exotic woods.</h4>
</td>
</tr>

</table>

______________________________________________________
<br><br>
<center>


<table width="575">


<tr>
<td width="285">These were pictures of a few RAVEN Custom cues while the cues were being built.

<br>
<br>


SN-00063
<a href="images/cues/waswascue56-a.jpg" target="content"><img name="custom made pool cue with snakewood and yellow heart inlays #50" src="images/cues/waswascue56-a.jpg" width="285"></a>


<td width="285">These are pictures of a few RAVEN Custom cues when the cues were completed.


<br>
<br>

SN-00063 .................................... SOLD
<a href="cue56.html" target="content"><img name="custom pool cue with snakewood and yellow heart inlays #50" src="images/cues/cue56-a.jpg" width="285"></a>

<tr>
<td width="285">



SN-00062
<a href="images/cues/waswascue57-a.jpg" target="content"><img name="custom made cocobolo and maple pool cue #58" src="images/cues/waswascue57-a.jpg" width="285"></a>


<td width="285">




SN-00062 .................................... SOLD
<a href="cue57.html" target="content"><img name="custom made cocobolo and maple pool cue #58" src="images/cues/cue57-a.jpg" width="285"></a>





<tr>
<td width="285">



SN-00056
<a href="images/cues/wascue49aa.jpg" target="content"><img name="custom made cocobolo hustler pool cue #60" src="images/cues/wascue49aa.jpg" width="285"></a>


<td width="285">




SN-00056 .................................... SOLD
<a href="cue49.html" target="content"><img name="custom pool cue with ivory inlays #50" src="images/cues/cue49-e.jpg" width="285"></a>



<tr>
<td width="285">








SN-00058
<a href="images/cues/wascue59-a.jpg" target="content"><img name="custom made cocobolo hustler pool cue #60" src="images/cues/wascue59-a.jpg" width="285"></a>


<td width="285">




SN-00058 .................................... SOLD
<a href="cue59.html" target="content"><img name="custom made cocobolo sneaky pete billiard cue #60" src="images/cues/cue59-a.jpg" width="285"></a>








<tr>
<td width="285">




SN-00060
<a href="images/cues/wascue58-a.jpg" target="content"><img name="custom made billiards cue # 59" src="images/cues/wascue58-a.jpg" width="285"></a>


<td width="285">



SN-00060 .................................... SOLD
<a href="cue58.html" target="content"><img name="custom made pocket billiards cue # 59" src="images/cues/cue58-a.jpg" width="285"></a>



<tr>
<td width="285">



SN-00061
<a href="images/cues/wascue63-a.jpg" target="content"><img name="custom made birdseye maple cocobolo jump break cue # 64" src="images/cues/wascue63-a.jpg" width="285"></a>


<td width="285">



SN-00061 .................................... SOLD
<a href="cue63.html" target="content"><img name="custom jump break cue 64" src="images/cues/cue63-a.jpg" width="285"></a>




<tr>
<td width="285">



SN-00051
<a href="images/cues/wascue52-a.jpg" target="content"><img name="custom cue # 53 3/8-10 black phenolic butt cap and joint" src="images/cues/wascue52-a.jpg" width="285"></a>


<td width="285">



SN-00051 ..................................... SOLD
<a href="cue52.html" target="content"><img name="custom cue # 53 3/8-10 black phenolic butt cap and joint" src="images/cues/cue52-a.jpg" width="285"></a>



<tr>
<td width="285">



SN-00046
<a href="images/cues/wascue42-a.jpg" target="content"><img name="custom cue # 43 with ebony ivory yellow heart burl bloody basin jasper" src="images/cues/wascue42-a.jpg" width="285"></a>


<td width="285">



SN-00046 .................................... Available
<a href="cue42.html" target="content"><img name="cue 52" src="images/cues/cue42-a.jpg" width="285"></a>





</table>


<table width="575">


<tr><td align="center"><font size=4>

<br>

Click on a selection below to view the cues you want to see. Even though we take great pains to reduce the size of picture files there are so many of them they may take a little while to load even on fairly fast internet connections. By selecting what you want to look at you can speed viewing time. If your connection is DSL, Cable or faster... go for it.<br><br></font>
</td></tr>

<tr><td align="center"> <font size=4 style="color: red;"><b><a href="cuescompletedandunsold.html">(1) Show me only RAVEN cues that are completed but not sold yet.<br> <br></b></a></font>
</td></tr>

<tr><td align="center"> <font size=4 style="color: red;"><b><a href="cuesinprogress.html">(2) Show me only RAVEN cues that are in the process of being built.<br> <br></b></a></font>
</td></tr>

<tr><td align="center"> <font size=4 style="color: red;"><b><a href="pastcues.html">(3) Show more RAVEN cues. Most are sold, others are not sold yet.<br> <br></b></a></font>
</td></tr>

<tr><td align="center"> <font size=4 style="color: red;"><b><a href="othercues.html">(4) Show me cues made by other custom cuemakers.<br> <br></b></a></font>
</td></tr>


<tr><td align="center"> <font size=4 style="color: brown;"><b><a href="notravencues.html">(5) Show me used cues for sale.<br> <br></b></a></font>
</td></tr>



<tr><td align="center"> <img src="images/visa.gif" alt="Purchase Pool and Billiard Cues"><br><br>
<img src="images/mc.gif" alt="Purchase Pool Cues or Pocket Billiards Cues"> <b><br><br><a href="buyraven.html"><font size=3 style="color: blue;">We accept Visa and Mastercard<br> <br><br><br></b> </a></font>
</td></tr>


<tr><td align="center"> <img src="images/ica725a.jpg" alt="American Cuemakers Association logo"><b><br><br><a href="http://www.internationalcuemakers.com/" target="_blank">Member of the International Cuemakers Association</a><font size=3 style="color: blue;"> <br> <br><br><br></b> </a></font>
</td></tr>


</h4></td></tr>





<tr><td align="center"><font size=2>Since it first went on line in 2002 </font>

<applet code='counter' codebase='http://ravencues.com/v-web/counter'
width='90' height='20'>
<param name='counter' value='Home Page Counter'>
<param name='style' value='E'>
<param name='minsize' value='6'>
<param name='bgcolor' value='#303030'>
<param name='twoclicks' value='http://ravencues.com'>
</applet>

<font size=2>people have visited this pool and billiards website.</font></td></tr>


</table>

<br>

<script language=javascript
src="http://ss.webring.com/navbar?f=j;y=smw51;u=10055383">
</script><noscript><center>
<table bgcolor=gray cellspacing=0 border=2 bordercolor=red><tr>
<td><table cellpadding=2 cellspacing=0 border=0><tr><td align=center>
<font face=arial size=-1>This site is a member of WebRing.
<br>To browse visit <a href="http://ss.webring.com/navbar?f=l;y=smw51;u=10055383">
Here</a>.</font></td></tr></table></td></tr></table>
</center></noscript>


<br>
<br>
<h3>
<a href="mailto:contact-usatravencues.com">Click here to E-mail RAVEN Custom Pool Cues</a></h3>

<br>
<br>
<b>
Even though our primary business is building high quality one of a kind pool cues we understand that many of the pool players who visit this website are casual pocket billiards players or are on a budget like most people are. Many of our clients have also asked about cue cases and the various accessories that billiard players typically need. So we decided to create an Internet based Discount Pool and Billiards store to try and offer inexpensive or less expensive production cues and virtually all the other billiard supplies a person would need. We want to provide and supply an affordable alternative for all pool players. Everyone likes to get a bargain and buy things on sale. Most items are on sale and discounted 20%. Some things are not quite that cheap but with free shipping on orders over $75 there are some very good deals. Our prices often match wholesale prices.
</b>
<br>
<br>


<br>
<b>
Raven Custom Cues now operates a web based Discount Pool and Billiards Store for the convienence of our customers. We are an authorized dealer for Aramith, Blaze Pool and Billiards Cues, Buffalo Cases, Cue Cube, Cowboy Cue Cases, CueSight, Cuetec Pool Cues, Elephant, Falcon Pool Cues, Fury Billiards Cues, Instroke Cue Cases, Joe Porper, Creative Inventions, Mali Cues, Master, Predator Pool Cues and Cases, Sardo, Sierra Custom Cues, Silver Cup, Simonis, Smart Wipes, Sterling Cues and Cases, Tempest Billiards Cues, Tweeten, The Monk, Viking Pool Cues as well as many other name brands.

</b>

<br>
<br>
</font>


</center>

</body>



</td>
</tr>
</table>



</html>
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8301
Location: Castle Pines North, CO USA

PostPosted: Thu Mar 16, 2006 7:15 pm     Reply with quote

Yes at some point you misread what I said. You said your code is
Code:
<table style="width:100%">
<tr>
<td style="width:15%; vertical-align: top"><!--#include file="ssitestmenu.txt" --></td>
<td style="width:85%">

<body bgcolor="#E6E6E6" topmargin="0"> <center>
Of course it cannot be that because everything has to be in <body> tag so using your example and not the code I gave you
Code:
<body bgcolor="#E6E6E6" topmargin="0"> <table style="width:100%">
<tr>
<td style="width:15%; vertical-align: top"><!--#include file="ssitestmenu.txt" --></td>
<td style="width:85%">
Everything that I gave you goes after the opening <body> tag - that was assumed.

_________________
Corey
Loud Commerce | Loud Worx | Toll Free Solutions
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> SSI All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial