• Welcome to KonaKart Community Forum. Please login or sign up.
 

problem with Internet Explorer

Started by David, January 04, 2008, 03:50:48 pm

Previous topic - Next topic

David

Hi,

I'm finishing my first shop with KonaKart (the second will be soon), but I have a big problem with internet explorer.

My shop have a fixed width, everything is ok if you see it with mozilla, but with internet explorer it's a little mess  >:(

I tried some things I saw in Internet but it still failing.

By the way, this is my shop, it's not the best but here it is: www.gdonline.es

I hope you like it  ;D

pete

Cool. Good job.

Now all you need is a "Chapa" with the blue KonaKart palm tree  ;)

kate

Hi David,

That's a nice looking site, well done indeed!  Thanks for posting that link.

Those browser differences are sometimes very tricky to solve (and can take a long time of trial and error).   If you can't get them both looking perfectly I'd get IE7 working the better of the two if I were you because most of your visitors will be using that I expect.

Kate

David

Hi

finally I solve this. If I can help somebody, here is what I did to center my shop in all navigators

in MainLayout.jsp
Quote
...
      <link type="text/css" rel="stylesheet" href="styles/stylesheet.css" />
      <style type="text/css">
         html{margin:0;padding:0;}
         body{margin:auto;padding:0;}
         #contenido{width:750px;border:0px solid #000;margin:auto}
            
      </style>
   </head>

   <body>
      <div id="contenido" align="center">
...


and in stylesheet.css:
Quote
...
BODY {
  width: 750;
  background: #FFFFFF;
  color: #000000;
  margin: 0 auto;
  text-align:center
}
...


PD: Thanks for putting gdOnline in your"Live Sites"  ;)