reuber1
12-05-2006, 09:00 PM
EDIT: I forgot. Do a search for "guitar". There shouldn't be any content yet anywhere else except the homepage and Repairs, and possibly a few others that I'm not aware of.
http://64.198.195.247/?skinid=99
ARGGHHH...I just retooled my CSS and everything works great except now, if you do a search, on the search page in Firefox (old and new versions) the dividing line between each item is like 14 pixels tall, instead of 1 pixel like it should be, yet Internet Explorer (6 and 7, anyway) is working fine for some odd reason.
Here's the CSS...
http://64.198.195.247/skins/Skin_99/style.css
And here's my ORIGINAL code before it dynamically pulls in the server side material:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<%@ Control Language="c#" AutoEventWireup="false" Inherits="AspDotNetStorefront.TemplateBase" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<%@ Register TagPrefix="ComponentArt" Namespace="ComponentArt.Web.UI" Assembly="ComponentArt.Web.UI" %>
<%@ Register TagPrefix="Wilson" Namespace="Wilson.WebForm" Assembly="WilsonWebForm" %>
<html lang="en">
<head>
<title>(!METATITLE!)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta NAME="rating" CONTENT="General">
<meta NAME="distribution" CONTENT="global">
<meta NAME="robots" CONTENT="all">
<meta NAME="description" CONTENT="(!METADESCRIPTION!)">
<meta NAME="keywords" CONTENT="(!METAKEYWORDS!)">
<link rel="stylesheet" href="skins/Skin_(!SKINID!)/style.css" type="text/css">
<script type="text/javascript" src="jscripts/formValidate.js">// JavaScript for Rollover Functionality
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
</script>
</head>
<!-- PAGE INVOCATION: '(!INVOCATION!)' -->
<!-- PAGE REFERRER: '(!REFERRER!)' -->
<!-- CUSTOMER ID: '(!CUSTOMERID!)' -->
<!-- STORE LOCALE: '(!STORELOCALE!)' -->
<!-- CUSTOMER LOCALE: '(!CUSTOMERLOCALE!)' -->
<!-- STORE VERSION: '(!STORE_VERSION!)' -->
<!-- CACHE MENUS: '(!AppConfig name="CacheMenus"!)' -->
<!-- to center your pages, set text-align: center -->
<!-- to left justify your pages, set text-align: center -->
<!-- if using dynamic full width page sizes, the left-right align has no effect (obviously) -->
<body>
(!COUNTRYBAR!)
<div id="wrap">
<div id="logo">
<a href="default.aspx"><img src="skins/skin_(!SKINID!)/images/logo.gif" width="195" height="100" border="0" /></a>
</div>
<div id="flash">
<img src="skins/skin_(!SKINID!)/images/flashplaceholder.jpg" class="flash" width="176" height="80px" />
</div>
<div id="login">
(!USER_INFO!)
</div>
<div id="search">
<form style="cursor:hand; margin-top: 0px; margin-bottom: 0px;" id="topsearchform" name="topsearchform" method="GET" action="search.aspx">
<input name="SearchTerm" type="text" size="15"><input value="Search" name="B1" type="submit">
</form>
</div>
<div id="navhead">
<ul id="nav">
<li id="nav-home"><a href="default.aspx">Home</a></li>
<li id="nav-news"><a href="t-news.aspx">News</a></li>
<li id="nav-locations"><a href="t-locations.aspx">Locations</a></li>
<li id="nav-specials"><a href="t-specials.aspx">Specials</a></li>
<li id="nav-repair"><a href="t-repair.aspx">Repair</a></li>
<li id="nav-rentals"><a href="t-rentals.aspx">Rentals</a></li>
<li id="nav-lessons"><a href="t-lessons.aspx">Lessons</a></li>
<li id="nav-staff"><a href="t-staff.aspx">Staff</a></li>
</ul>
</div>
<div id="navleft">
<ComponentArt:Menu id="VertMenu"
Orientation="vertical"
ScrollingEnabled="true"
ScrollUpLookId="VertScrollUpItemLook"
ScrollDownLookId="VertScrollDownItemLook"
CssClass="VertTopMenuGroup"
DefaultGroupCssClass="VertMenuGroup"
DefaultItemLookID="VertDefaultItemLook"
DefaultGroupItemSpacing="1"
ExpandDelay="0"
ExpandDuration="0"
ExpandSlide="None"
ExpandTransition="None"
CascadeCollapse="false"
CollapseDelay="0"
CollapseSlide="None"
CollapseTransition="None"
ImagesBaseUrl="skins/skin_1/images/"
EnableViewState="false"
Width="100%"
runat="server">
<ItemLooks>
<ComponentArt:ItemLook LookId="VertTopItemLook" CssClass="VertTopMenuItem" HoverCssClass="VertTopMenuItemHover" LabelPaddingLeft="4" LabelPaddingRight="4" LabelPaddingTop="0" LabelPaddingBottom="0" />
<ComponentArt:ItemLook LookId="VertDefaultItemLook" CssClass="VertMenuItem" HoverCssClass="VertMenuItemHover" LabelPaddingLeft="4" LabelPaddingRight="4" LabelPaddingTop="0" LabelPaddingBottom="0" />
<ComponentArt:ItemLook LookID="VertScrollUpItemLook" ImageUrl="scroll_up.gif" ImageWidth="15" ImageHeight="13" CssClass="VertScrollItem" HoverCssClass="VertScrollItemH" ActiveCssClass="VertScrollItemA" />
<ComponentArt:ItemLook LookID="VertScrollDownItemLook" ImageUrl="scroll_down.gif" ImageWidth="15" ImageHeight="13" CssClass="VertScrollItem" HoverCssClass="VertScrollItemH" ActiveCssClass="VertScrollItemA" />
</ItemLooks>
</ComponentArt:Menu>
<!--Print Music logo -->
<img src="skins/skin_(!SKINID!)/images/pmlogo.gif" align="right"/>
</div>
<div id="centercontent">
<a href="default.aspx">Rieman Music:</a> (!SECTION_TITLE!)
<p><asp:placeholder id="PageContent" runat="server"></asp:placeholder></p>
</div>
<div id="footer">
<a href="t-privacy.aspx">Privacy Policy</a> <a href="t-returns.aspx">Return Policy</a> <a href="default.aspx">Home</a> <a href="t-contact.aspx">Contact Us</a>
</div>
</div>
</body>
</html>
This is what I'm talking about, Willis:
http://i4.photobucket.com/albums/y126/reuber1/pic.jpg
http://64.198.195.247/?skinid=99
ARGGHHH...I just retooled my CSS and everything works great except now, if you do a search, on the search page in Firefox (old and new versions) the dividing line between each item is like 14 pixels tall, instead of 1 pixel like it should be, yet Internet Explorer (6 and 7, anyway) is working fine for some odd reason.
Here's the CSS...
http://64.198.195.247/skins/Skin_99/style.css
And here's my ORIGINAL code before it dynamically pulls in the server side material:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<%@ Control Language="c#" AutoEventWireup="false" Inherits="AspDotNetStorefront.TemplateBase" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<%@ Register TagPrefix="ComponentArt" Namespace="ComponentArt.Web.UI" Assembly="ComponentArt.Web.UI" %>
<%@ Register TagPrefix="Wilson" Namespace="Wilson.WebForm" Assembly="WilsonWebForm" %>
<html lang="en">
<head>
<title>(!METATITLE!)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta NAME="rating" CONTENT="General">
<meta NAME="distribution" CONTENT="global">
<meta NAME="robots" CONTENT="all">
<meta NAME="description" CONTENT="(!METADESCRIPTION!)">
<meta NAME="keywords" CONTENT="(!METAKEYWORDS!)">
<link rel="stylesheet" href="skins/Skin_(!SKINID!)/style.css" type="text/css">
<script type="text/javascript" src="jscripts/formValidate.js">// JavaScript for Rollover Functionality
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
</script>
</head>
<!-- PAGE INVOCATION: '(!INVOCATION!)' -->
<!-- PAGE REFERRER: '(!REFERRER!)' -->
<!-- CUSTOMER ID: '(!CUSTOMERID!)' -->
<!-- STORE LOCALE: '(!STORELOCALE!)' -->
<!-- CUSTOMER LOCALE: '(!CUSTOMERLOCALE!)' -->
<!-- STORE VERSION: '(!STORE_VERSION!)' -->
<!-- CACHE MENUS: '(!AppConfig name="CacheMenus"!)' -->
<!-- to center your pages, set text-align: center -->
<!-- to left justify your pages, set text-align: center -->
<!-- if using dynamic full width page sizes, the left-right align has no effect (obviously) -->
<body>
(!COUNTRYBAR!)
<div id="wrap">
<div id="logo">
<a href="default.aspx"><img src="skins/skin_(!SKINID!)/images/logo.gif" width="195" height="100" border="0" /></a>
</div>
<div id="flash">
<img src="skins/skin_(!SKINID!)/images/flashplaceholder.jpg" class="flash" width="176" height="80px" />
</div>
<div id="login">
(!USER_INFO!)
</div>
<div id="search">
<form style="cursor:hand; margin-top: 0px; margin-bottom: 0px;" id="topsearchform" name="topsearchform" method="GET" action="search.aspx">
<input name="SearchTerm" type="text" size="15"><input value="Search" name="B1" type="submit">
</form>
</div>
<div id="navhead">
<ul id="nav">
<li id="nav-home"><a href="default.aspx">Home</a></li>
<li id="nav-news"><a href="t-news.aspx">News</a></li>
<li id="nav-locations"><a href="t-locations.aspx">Locations</a></li>
<li id="nav-specials"><a href="t-specials.aspx">Specials</a></li>
<li id="nav-repair"><a href="t-repair.aspx">Repair</a></li>
<li id="nav-rentals"><a href="t-rentals.aspx">Rentals</a></li>
<li id="nav-lessons"><a href="t-lessons.aspx">Lessons</a></li>
<li id="nav-staff"><a href="t-staff.aspx">Staff</a></li>
</ul>
</div>
<div id="navleft">
<ComponentArt:Menu id="VertMenu"
Orientation="vertical"
ScrollingEnabled="true"
ScrollUpLookId="VertScrollUpItemLook"
ScrollDownLookId="VertScrollDownItemLook"
CssClass="VertTopMenuGroup"
DefaultGroupCssClass="VertMenuGroup"
DefaultItemLookID="VertDefaultItemLook"
DefaultGroupItemSpacing="1"
ExpandDelay="0"
ExpandDuration="0"
ExpandSlide="None"
ExpandTransition="None"
CascadeCollapse="false"
CollapseDelay="0"
CollapseSlide="None"
CollapseTransition="None"
ImagesBaseUrl="skins/skin_1/images/"
EnableViewState="false"
Width="100%"
runat="server">
<ItemLooks>
<ComponentArt:ItemLook LookId="VertTopItemLook" CssClass="VertTopMenuItem" HoverCssClass="VertTopMenuItemHover" LabelPaddingLeft="4" LabelPaddingRight="4" LabelPaddingTop="0" LabelPaddingBottom="0" />
<ComponentArt:ItemLook LookId="VertDefaultItemLook" CssClass="VertMenuItem" HoverCssClass="VertMenuItemHover" LabelPaddingLeft="4" LabelPaddingRight="4" LabelPaddingTop="0" LabelPaddingBottom="0" />
<ComponentArt:ItemLook LookID="VertScrollUpItemLook" ImageUrl="scroll_up.gif" ImageWidth="15" ImageHeight="13" CssClass="VertScrollItem" HoverCssClass="VertScrollItemH" ActiveCssClass="VertScrollItemA" />
<ComponentArt:ItemLook LookID="VertScrollDownItemLook" ImageUrl="scroll_down.gif" ImageWidth="15" ImageHeight="13" CssClass="VertScrollItem" HoverCssClass="VertScrollItemH" ActiveCssClass="VertScrollItemA" />
</ItemLooks>
</ComponentArt:Menu>
<!--Print Music logo -->
<img src="skins/skin_(!SKINID!)/images/pmlogo.gif" align="right"/>
</div>
<div id="centercontent">
<a href="default.aspx">Rieman Music:</a> (!SECTION_TITLE!)
<p><asp:placeholder id="PageContent" runat="server"></asp:placeholder></p>
</div>
<div id="footer">
<a href="t-privacy.aspx">Privacy Policy</a> <a href="t-returns.aspx">Return Policy</a> <a href="default.aspx">Home</a> <a href="t-contact.aspx">Contact Us</a>
</div>
</div>
</body>
</html>
This is what I'm talking about, Willis:
http://i4.photobucket.com/albums/y126/reuber1/pic.jpg