<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1030042" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1030042</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1176269</link>
    <description> &lt;p&gt;It reminds me of grand theft auto san andreas for some reson i think it has the same font&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 Aug 2005 15:43:52 +0000</pubDate>
 <dc:creator>vibins</dc:creator>
 <guid isPermaLink="false">comment 1176269 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1176258</link>
    <description> &lt;p&gt;It looks pretty good. The layout is very well done and the colors are great. I don&#039;t like how the links are set up. The link color is too dark for the background it is on, and then when you hover, a box appears around it and the color changes. That&#039;s not how I would&#039;ve done it. You have &lt;strong&gt;a lot&lt;/strong&gt; of links up in the top navigation bar. Maybe try combining some similar pages. Overall, nice work. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 Aug 2005 14:44:54 +0000</pubDate>
 <dc:creator>mscreashuns</dc:creator>
 <guid isPermaLink="false">comment 1176258 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1176140</link>
    <description> &lt;p&gt;I really like it!!! Very original!! Maybe I would change the word &quot;merch&quot; to &quot;swag&quot;, but I did know what was meant right away!  Maybe it&#039;s a more common term than &quot;swag&quot; anyway..&lt;/p&gt;
 </description>
     <pubDate>Sat, 06 Aug 2005 05:41:13 +0000</pubDate>
 <dc:creator>totalnewbie</dc:creator>
 <guid isPermaLink="false">comment 1176140 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175151</link>
    <description> &lt;p&gt;Ok, I rewrote the News and Journals pages so that they&#039;re split up into 25 entries/page. If anyone&#039;s interested here&#039;s the script for it:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!-- #include virtual=&amp;quot;\header.asp&amp;quot; --&amp;gt;&lt;br /&gt;&amp;lt;!-- #include virtual=&amp;quot;\database\dblink.asp&amp;quot; --&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;%&lt;br /&gt;	Dim newsQuery&lt;br /&gt;	Dim page&lt;br /&gt;	Dim pages&lt;br /&gt;	&lt;br /&gt;	page = Request.QueryString(&amp;quot;page&amp;quot;)&lt;br /&gt;	strLowerBound = Request.QueryString(&amp;quot;page&amp;quot;)&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	&amp;#039; Determine number of pages based on how many records in DB&lt;br /&gt;	objRS.Open &amp;quot;SELECT TOP 1 news_id FROM tbl_news ORDER BY news_id DESC&amp;quot;, objDBConn&lt;br /&gt;	pages = int(objRS(&amp;quot;news_id&amp;quot;) / 25)&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	&amp;#039; Setup query&lt;br /&gt;	If page = &amp;quot;all&amp;quot; Then&lt;br /&gt;		newsQuery = &amp;quot;SELECT * FROM tbl_news ORDER BY news_date DESC&amp;quot;		&lt;br /&gt;	Else&lt;br /&gt;		If page = &amp;quot;&amp;quot; Then&lt;br /&gt;			Response.Redirect &amp;quot;/news.asp?page=&amp;quot; &amp;amp; pages&lt;br /&gt;		Else&lt;br /&gt;			strLowerBound = strLowerBound * 25&lt;br /&gt;		End If	&lt;br /&gt;&lt;br /&gt;		strUpperBound = strLowerBound + 25&lt;br /&gt;	&lt;br /&gt;		newsQuery = &amp;quot;SELECT * FROM tbl_news WHERE news_id &amp;gt; &amp;quot; &amp;amp; strLowerBound &amp;amp; &amp;quot; AND news_id &amp;lt; &amp;quot; &amp;amp; strUpperBound &amp;amp; &amp;quot; ORDER BY news_date ASC&amp;quot;&lt;br /&gt;	End If&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	&amp;#039; Write navigation links&lt;br /&gt;&lt;br /&gt;	Response.Write &amp;quot;&amp;lt;p style=&amp;#039;text-align: center;&amp;#039;&amp;gt;&amp;quot;&lt;br /&gt;	&lt;br /&gt;	If page = &amp;quot;all&amp;quot; Then&lt;br /&gt;	&lt;br /&gt;		Response.Write &amp;quot;&amp;lt;a href=&amp;#039;/news.asp?page=0&amp;#039;&amp;gt;Oldest&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;#039;/news.asp?page=&amp;quot; &amp;amp; pages &amp;amp; &amp;quot;&amp;#039;&amp;gt;Newest&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;	&lt;br /&gt;	Else&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;		&lt;br /&gt;		If page &amp;gt; 0 Then&lt;br /&gt;				Response.Write &amp;quot;&amp;lt;a href=&amp;#039;/news.asp?page=0&amp;#039;&amp;gt;Oldest&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;#039;/news.asp?page=&amp;quot; &amp;amp; page - 1 &amp;amp; &amp;quot;&amp;#039;&amp;gt;&amp;amp;laquo;&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;			Else&lt;br /&gt;				Response.Write &amp;quot;Oldest | &amp;amp;laquo;&amp;quot;&lt;br /&gt;			End If&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;		Response.Write &amp;quot; | &amp;lt;a href=&amp;#039;/news.asp?page=all&amp;#039;&amp;gt;All&amp;lt;/a&amp;gt; | &amp;quot;&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;		If cint(page) &amp;lt; pages Then&lt;br /&gt;				Response.Write &amp;quot;&amp;lt;a href=&amp;#039;/news.asp?page=&amp;quot; &amp;amp; page + 1 &amp;amp; &amp;quot;&amp;#039;&amp;gt;&amp;amp;raquo;&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;#039;/news.asp?page=&amp;quot; &amp;amp; pages &amp;amp; &amp;quot;&amp;#039;&amp;gt;Newest&amp;lt;/a&amp;gt;&amp;quot;&lt;br /&gt;			Else&lt;br /&gt;				Response.Write &amp;quot;&amp;amp;raquo; | Newest&amp;quot;&lt;br /&gt;			End If&lt;br /&gt;&lt;br /&gt;	End If&lt;br /&gt;	&lt;br /&gt;	Response.Write &amp;quot;&amp;lt;/p&amp;gt;&amp;quot;&lt;br /&gt;	&lt;br /&gt;	&amp;#039; Get records&lt;br /&gt;	getNews newsQuery, &amp;quot;large&amp;quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	Set objRS = Nothing&lt;br /&gt;	objDBConn.Close&lt;br /&gt;	Set objDBConn = Nothing&lt;br /&gt;%&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- #include virtual=&amp;quot;\footer.asp&amp;quot; --&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Thu, 21 Jul 2005 01:42:33 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1175151 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175144</link>
    <description> &lt;p&gt;I had our graphics guy come up w/ a small image to separate entries on the front and also news/journal pages, I think that&#039;s helping some.&lt;/p&gt;
&lt;p&gt;I also added some photos to the tour page. I&#039;ll probably choose different ones (ones that are actually from shows) and play around w/ them in Photoshop to blend them into the page and each other, but it at least gives an idea of what it&#039;ll look like.&lt;/p&gt;
&lt;p&gt;Does anyone know how I can set the Journal div on the front page to only have a vertical scrollbar? It&#039;s not an inline frame, just a CSS element set w/ &quot;overflow: auto&quot;. There isn&#039;t a horizontal-only/vertical-only property for overflow. It shouldn&#039;t actually have a horizontal scroll since the content doesn&#039;t overflow horizontally, and originally it didn&#039;t, but when I changed the font size it did. I guess the browser thinks it is overflowing. I tried adding extra padding but that didn&#039;t change anything.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 21:33:28 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1175144 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175138</link>
    <description> &lt;p&gt;Cool, thanks for the concern, I just don&#039;t have the same view towards it as you do. In most cases we&#039;d probably agree about the need for conforming to standards, but this time I think it adds value without hurting anything, so I don&#039;t have a problem with it.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 19:45:25 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1175138 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175137</link>
    <description> &lt;p&gt;I shall respectfully disagree and withdraw from the thread!&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 19:17:20 +0000</pubDate>
 <dc:creator>chris_bcn</dc:creator>
 <guid isPermaLink="false">comment 1175137 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175121</link>
    <description> &lt;p&gt;That&#039;s a really good idea Megan, I hadn&#039;t thought about that. Thanks &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&quot;Merch&quot; is a pretty standard term in the subculture, I think most people will get it right away. And I don&#039;t think everything always has to be obvious. I realize people don&#039;t care about exploring a site most of the time and just want information, but in this case I don&#039;t think it&#039;s a big deal. Plus, I don&#039;t have the font the graphic designer used, so I can&#039;t change it anyway &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 18:24:09 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1175121 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175120</link>
    <description> &lt;p&gt;The cursor changes onmouseover, that&#039;s pretty standard feedback for an image link.&lt;/p&gt;
&lt;p&gt;Actually, I used CSS because it makes it easier to design and maintain the site, not for slimmer markup. It&#039;s 6 extra lines, I wouldn&#039;t really consider that bloated. &lt;/p&gt;
&lt;p&gt;You&#039;re right about the news/journal pages being too long. Editing the query to pull older entries in sections of 25 is at the bottom of my TODO list, but I should probably do it now.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 18:18:34 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1175120 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/website-critique-area/faded-me#comment-1175118</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;IanD wrote:&lt;/strong&gt; &quot;merch&quot; stands for &quot;merchendise.&quot;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Yes, I see that, but the point is that its not clear right away. Users shouldn&#039;t have to think to figure out what a navigation item means, it should be obvious. Store is obvious. &lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: I agree about the news, tour and journal pages needing some details. I&#039;m not sure about splitting them into multiple columns though because it could be confusing as to the chronology of the entries. I&#039;m definitely open to suggestions about how to separate them visually though.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;What about putting some photos along the side?  Some action shots would be a good way to liven things up there.  That would be a good connection for  the event listings.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2005 18:11:15 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1175118 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
