View Single Post
  #79  
Old 02-07-2007, 08:23 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Horizontal and Vertical Flyout Category Menu

First thing, your syntax for the css links could be better. Try this:

Code:
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}" /> <link rel="stylesheet" href="{$SkinDir}/flyouts/horiz.css" />

What flyout mod are you using?

Where are you placing {include file="flyouts/horiz.tpl"} in home.tpl? You might try (brute force) and putting the include into its own table, such as:

Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>{include file="flyouts/horiz.tpl"}</td> </tr> </table>

PS -- I do this for my site.

Are you using Phil's code or something else?Did you follow the instructiuons to the letter and modify the php file(s) as required? Did you upload the css?

PPS -- you may want to center your entire site if you're going to constrain it to 773px wide. Personally, I see no need to support 800px -- FYI, my january stats tell me that less than 1% (.86% to be exact) of my visitors have screens smaller than 1024 wide. Something to consider. The difference bewteen 773 pixels and 1000 pixels is almost 30% more... that's a LOT of screen real estate to give up... FWIW.

I hope something in here helps you.

Jeremy
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote