Help - Search - Members - Calendar
Full Version: Problem With Zymic Template-reporting To Designer
Zymic Webmaster Forums > Zymic.com Support > Zymic Free Web Templates
cjmueller
I created a site with this template http://www.zymic.com/forum/index.php?showforum=35. wivalleyart.org. I'm having problems with the site in IE6 browser, looks fine in Firefox.

Below is the message I received in a Zymic webmaster forum--not sure how to contact the designer/coder. Can anyone help?


And yes there is definitely a problme with IE6 browser, also the 'footer' image is being pushed down with the text for over 300 pixel.

Now what you can do is ask a Zymic coder or designer or who ever coded it to fix it because its a download and everyone is downloading an error. Since you removed copyright you also paid for it so i guess you can get it fixed.

And since its a Zymic template you need to go here : http://www.zymic.com/forum/index.php?showforum=35

This is the template : http://www.zymic.com/free-templates/138/live-preview/
And no its not valid as well on IE6 so you did not cause the problem. Coder just did not take the time to code it for IE6 (IE6 is not really being used these days you need to care about IE7 IE8 FF2 FF3 and Safari (really little))

Andrew
Upgrade to IE7

It looks fine to me.

And as far as I know, there really isn't a way to contact the original designers. You'll have to find a fix yourself, or maybe someone on here would be willing to give it a try. But I don't have ie6 so I can't help.
IamShipon1988
Well there is an IE6 hack that you can use. Unfortunately I don't know anything about how the structure of that template was coded but in CSS if you use floats on one direction for both columns within a container/wrapper you can get it to look just fine in IE6. So basically you will need to modify the code or write your own code with the following:
CODE
CSS

2colcontainer{
/**You can specify the width for the container here**/
}
2colA {
float: left;
width: 300px; //change to your prefference
}
2colB {
float: left;
height: 1%; //IE6 height hack
width: 300px;
}


XHTML

<div id="2colcontainer">
      <div id="2colA">
           TEXT
      </div>
      <div id="2colB">
           TEXT
      </div>
</div>
cjmueller
QUOTE(IamShipon1988 @ Sep 20 2008, 03:55 PM) *
Well there is an IE6 hack that you can use. Unfortunately I don't know anything about how the structure of that template was coded but in CSS if you use floats on one direction for both columns within a container/wrapper you can get it to look just fine in IE6. So basically you will need to modify the code or write your own code with the following:
CODE
CSS

2colcontainer{
/**You can specify the width for the container here**/
}
2colA {
float: left;
width: 300px; //change to your prefference
}
2colB {
float: left;
height: 1%; //IE6 height hack
width: 300px;
}
XHTML

<div id="2colcontainer">
      <div id="2colA">
           TEXT
      </div>
      <div id="2colB">
           TEXT
      </div>
</div>

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.