943,690 Members | Top Members by Rank

Ad:
  • ColdFusion Discussion Thread
  • Marked Solved
  • Views: 4032
  • ColdFusion RSS
You are currently viewing page 1 of this multi-page discussion thread
May 23rd, 2006
0

Question regarding Title

Expand Post »
I am not sure if this is an HTML question or a Coldfusion question. Since I am using both I will ask in the in the CF forum. I can not get the title to show up on the top task bar in IE. I am not sure if it is my code or not, here is my code for the entire page
ColdFusion Syntax (Toggle Plain Text)
  1. <cfsetting showdebugoutput="no">
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  3. <html>
  4. <head>
  5. <title>Rumors Bar and Grill - Offsale</title>
  6. </head>
  7. <link rel="stylesheet" href="style.css" type="text/css">
  8.  
  9.  
  10. <body>
  11. <table id="wrapper" cellspacing="0" cellpadding="0">
  12. <tr>
  13. <td id="header"><img src="Images/top3.jpg"></td>
  14. </tr>
  15.  
  16. <tr>
  17. <td id="nav"> <cfinclude template="navigation.cfm"> </td>
  18. </tr>
  19.  
  20. <tr>
  21. <td id="content" valign="top">
  22. <table align="center" bordercolor="#ffffff" width="75%" border="1">
  23. <tr>
  24. <td colspan="3" align="center" bgcolor="#000000"><font color="#FFFFFF" size="4"><strong>Beer</strong></font></td>
  25. </tr>
  26.  
  27. <tr>
  28. <td width="40%" align="center"bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Budwieser</strong></font></td>
  29. <td width="40%" align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Miller Lite</strong></font></td>
  30. <td width="27%" rowspan="10" align="center" bgcolor="#666666"><img src="Images/Highlife2.JPG"></td>
  31. </tr>
  32.  
  33. <tr>
  34. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Bud Light</strong></font></td>
  35. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Miller Genuine Draft</strong></font></td>
  36. </tr>
  37.  
  38. <tr>
  39. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Busch</strong></font></td>
  40. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Miller Genuine Draft Light</strong></font></td>
  41. </tr>
  42.  
  43. <tr>
  44. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Busch Light</strong></font></td>
  45. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Miller High Life</strong></font></td>
  46. </tr>
  47.  
  48. <tr>
  49. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Coors Light</strong></font></td>
  50. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Miller High Life Light</strong></font></td>
  51. </tr>
  52.  
  53. <tr>
  54. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Rolling Rock</strong></font></td>
  55. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Old Milwaukee</strong></font></td>
  56. </tr>
  57.  
  58. <tr>
  59. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Michelob Golden Light</strong></font></td>
  60. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Old Milwaukee Light</strong></font></td>
  61. </tr>
  62.  
  63. <tr>
  64. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Michelob</strong></font></td>
  65. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Milwaukee's Best</strong></font></td>
  66. </tr>
  67.  
  68. <tr>
  69. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Michelob Light</strong></font></td>
  70. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Corona</strong></font></td>
  71. </tr>
  72.  
  73. <tr>
  74. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Michelob Ultra</strong></font></td>
  75. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Pabst Blue Ribbon</strong></font></td>
  76. </tr>
  77. </table>
  78.  
  79. <br><br>
  80. <table align="center" bordercolor="#FFFFFF" width="75%" border="1">
  81. <tr>
  82. <td align="center" colspan="3" bgcolor="#000000"><font size="4" color="#FFFFFF"><strong>Liquor</strong></font></td>
  83. </tr>
  84.  
  85. <tr>
  86. <td width="40%" align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi</strong></font></td>
  87. <td width="40%" align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Captain Morgan</strong></font></td>
  88. <td width="36%" rowspan="17" align="center" bgcolor="#666666"><img src="Images/Bacardi.JPG"></td>
  89. </tr>
  90.  
  91. <tr>
  92. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi Limon</strong></font></td>
  93. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Parrot Bay</strong></font></td>
  94. </tr>
  95.  
  96. <tr>
  97. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi O</strong></font></td>
  98. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Ron Diaz</strong></font></td>
  99. </tr>
  100.  
  101. <tr>
  102. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi Razz</strong></font></td>
  103. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Ronrico</strong></font></td>
  104. </tr>
  105.  
  106. <tr>
  107. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi CoCo</strong></font></td>
  108. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Malibu</strong></font></td>
  109. </tr>
  110.  
  111. <tr>
  112. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi Vanila</strong></font></td>
  113. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>E & J Brandy</strong></font></td>
  114. </tr>
  115.  
  116. <tr>
  117. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Bacardi Gold</strong></font></td>
  118. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Windsor</strong></font></td>
  119. </tr>
  120.  
  121. <tr>
  122. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Jose Cuervo</strong></font></td>
  123. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Jack Daniels</strong></font></td>
  124. </tr>
  125.  
  126. <tr>
  127. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Everclear</strong></font></td>
  128. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Jim Beam</strong></font></td>
  129. </tr>
  130.  
  131. <tr>
  132. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Vox</strong></font></td>
  133. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Black Velvet</strong></font></td>
  134. </tr>
  135.  
  136. <tr>
  137. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Smirnoff Rasberry</strong></font></td>
  138. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Root Beer Schnapps</strong></font></td>
  139. </tr>
  140.  
  141. <tr>
  142. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Smirnoff Cranberry</strong></font></td>
  143. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Peach Schnapps</strong></font></td>
  144. </tr>
  145.  
  146. <tr>
  147. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Smirnoff Vanilla</strong></font></td>
  148. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Peppermint Schnapps</strong></font></td>
  149. </tr>
  150.  
  151. <tr>
  152. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Smirnoff Cranberry</strong></font></td>
  153. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Peach Schnapps</strong></font></td>
  154. </tr>
  155.  
  156. <tr>
  157. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Karkov Vodka</strong></font></td>
  158. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Phillips Brandy</strong></font></td>
  159. </tr>
  160.  
  161. <tr>
  162. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Phillips Vodka</strong></font></td>
  163. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Amaretto</strong></font></td>
  164. </tr>
  165.  
  166. <tr>
  167. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Hypnotiq</strong></font></td>
  168. <td align="center" bgcolor="#666666"><font size="3" color="#FFFFFF"><strong>Cutty Shark Scotch</strong></font></td>
  169. </tr>
  170. </table>
  171.  
  172. <br><br>
  173. <table align="center" bordercolor="#FFFFFF" width="75%" border="1">
  174. <tr>
  175. <td colspan="3" align="center" bgcolor="#000000"><font size="4" color="#FFFFFF"><strong>Wine</strong></font></td>
  176. </tr>
  177.  
  178. <tr>
  179. <td width="33%" align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Boone's Farm</strong></font></td>
  180. <td width="32%" align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Merlot</strong></font></td>
  181. <td width="35%" rowspan="7" align="center" bgcolor="#666666"><img src="Images/Wine.JPG"></td>
  182. </tr>
  183.  
  184. <tr>
  185. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Vouvray</strong></font></td>
  186. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Ernest & Julio Gallo</strong></font></td>
  187. </tr>
  188.  
  189. <tr>
  190. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Assorted Wine Coolers</strong></font></td>
  191. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Archipel</strong></font></td>
  192. </tr>
  193.  
  194. <tr>
  195. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Arrowood</strong></font></td>
  196. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Andrew Murray</strong></font></td>
  197. </tr>
  198.  
  199. <tr>
  200. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Atalon</strong></font></td>
  201. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Bernardus</strong></font></td>
  202. </tr>
  203.  
  204. <tr>
  205. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Beringer</strong></font></td>
  206. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Newton Claret</strong></font></td>
  207. </tr>
  208.  
  209. <tr>
  210. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Chardonnay</strong></font></td>
  211. <td align="center" bgcolor="#666666"><font color="#FFFFFF" size="3"><strong>Dry Creek</strong></font></td>
  212. </tr>
  213. </table>
  214. </td>
  215. </tr>
  216.  
  217. <tr>
  218. <td id="right" valign="top">and here is extra, maybe an ad or something</td>
  219. </tr>
  220.  
  221. </table>
  222.  
  223. </body>
  224. </html>

any help would be great
Similar Threads
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 23rd, 2006
0

Re: Question regarding Title

If this is the output of your HTML code, the "<cfsetting showdebugoutput="no">" should not be there.
Reputation Points: 10
Solved Threads: 5
Junior Poster
alpha2006 is offline Offline
116 posts
since Apr 2006
May 23rd, 2006
0

Re: Question regarding Title

well if I don't have that line there it shows all of the debuging info. Like so
www.rumorssportsbar.com/offsale.cfm
should that line be placed somewhere else?
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 24th, 2006
0

Re: Question regarding Title

Hey Stewie,

I don’t think there is a problem where you have "<cfsetting showdebugoutput="no">", now I could be wrong. The only thing I did see is the your “<link rel=… >� is not within the <head> tags. Maybe this will help, if not just let me know.

Take care,

Walyer

Walyer's Playpen

*EDIT* I copied your code into my editor and tried to preview the file on my ColdFusion server. The title showed up when I view it in Firefox but not in IE. I’m not really sure why it worked in the one but not the other. Maybe this info can be useful to someone that knows what’s going on. Good luck with your problem Stewie. *EDIT*
Reputation Points: 10
Solved Threads: 1
Light Poster
Walyer is offline Offline
26 posts
since Apr 2005
May 24th, 2006
0

Re: Question regarding Title

Walyer,

I had originally had the <link rel..> inside the <head> tags. I moved it out thinking that was what was causing it but I guess it wasn't. I also thought that it was the CF server that I was on, but if you put it on yours and it still didn't work I guess that is not the cause of it either......well I am at a loss :-|
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 24th, 2006
0

Re: Question regarding Title

Do you get any kinda error when you try to preview? I ask this 'cause when I previewed your code on my server I got an error and the error was in place of the title.

Walyer

Walyer's Playpen
Reputation Points: 10
Solved Threads: 1
Light Poster
Walyer is offline Offline
26 posts
since Apr 2005
May 24th, 2006
0

Re: Question regarding Title

I haven't tried to preview. I will have to try that tonight
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 24th, 2006
0

Re: Question regarding Title

yeah, I got the same error.... I am running out of ideas. hahaha
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 26th, 2006
0

Re: Question regarding Title

I have figured it it. it was in my application.cfm file. I had this in there
<title>Untitled Document</title>
once removed all the correct titles showed up
Reputation Points: 10
Solved Threads: 0
Light Poster
Stewie is offline Offline
30 posts
since Apr 2006
May 27th, 2006
0

Re: Question regarding Title

Sweet I was having a hell of a time with it. I even looked at some of my work to compare and found that alot of it also doesn't show the title.

Well good to see it all worked out.
Reputation Points: 10
Solved Threads: 1
Light Poster
Walyer is offline Offline
26 posts
since Apr 2005

This thread is solved

Either the thread starter or a moderator has marked this thread as solved. You can most likely trust the responses and answers given. There is most likely no reason for any further responses to be posted here. If you have a related question, please start a new thread in this forum instead.

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in ColdFusion Forum Timeline: localhost and getcurrenttemplatepath()
Next Thread in ColdFusion Forum Timeline: Trying to return query results





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC