Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Graphics are 'off' in IE

Graphics are 'off' in IE

Locked

Views: 862

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
28 May 2009, 2:59 PM
#1
mibelloboutique avatar

mibelloboutique

New Zenner

Join Date:
Apr 2008
Posts:
30
Plugin Contributions:
0

Graphics are 'off' in IE

I don't know how to fix this and hoping someone can help.

In Firefox my main page looks fine but in IE everything is scooted to the right so that the graphics are off the center.

Can someone take a look at https://www.mibelloboutique.com in firefox and IE and give me some idea what I can do to fix it?

Kristy

28 May 2009, 6:41 PM
#2
s_t_e_v_e avatar

s_t_e_v_e

Zen Follower

Join Date:
Aug 2006
Location:
UK
Posts:
430
Plugin Contributions:
0

Re: Graphics are 'off' in IE

The page is pushed right becuase your left menu is wider than you want. It took a bit of finding, but the cause is a link to MORE in the Reviews box - you cannot see it becuase the color is white (#ffffff) In firefox, the link is beneath the title "Reviews" but in IE7, it tries to put it to the right and side of the header image, and pushes the table wide...

one method to fix it, would be to edit;

\includes\languages\english.php

find;

//text for sidebox heading links
define('BOX_HEADING_LINKS', '  [more]');

replace with;
//text for sidebox heading links
define('BOX_HEADING_LINKS', ' [more]');

28 May 2009, 7:01 PM
#3
mibelloboutique avatar

mibelloboutique

New Zenner

Join Date:
Apr 2008
Posts:
30
Plugin Contributions:
0

Re: Graphics are 'off' in IE

I tried that and it didn't do anything. Any other thoughts?

kristy

28 May 2009, 7:38 PM
#4
website_rob avatar

website_rob

Inactive

Join Date:
Oct 2006
Location:
Alberta, Canada
Posts:
4,572
Plugin Contributions:
0

Re: Graphics are 'off' in IE

Take out the word 'more' altogether.

replace with;
//text for sidebox heading links
define('BOX_HEADING_LINKS', '');

Note: single quotes are used even though it looks like a double.

28 May 2009, 8:26 PM
#5
mibelloboutique avatar

mibelloboutique

New Zenner

Join Date:
Apr 2008
Posts:
30
Plugin Contributions:
0

Re: Graphics are 'off' in IE

I took it out completely but it's still messed up.

Any other thoughts? When I turn the reviews off it almost completely pulls the graphics back over but I want the reviews on.

kristy

29 May 2009, 2:28 PM
#6
s_t_e_v_e avatar

s_t_e_v_e

Zen Follower

Join Date:
Aug 2006
Location:
UK
Posts:
430
Plugin Contributions:
0

Re: Graphics are 'off' in IE

I still see ;
  [more]

in your page source.... which tells me you haven't changed the file...

30 May 2009, 12:10 AM
#7
mibelloboutique avatar

mibelloboutique

New Zenner

Join Date:
Apr 2008
Posts:
30
Plugin Contributions:
0

Re: Graphics are 'off' in IE

Okay I figured it out. I was going into the folder you said not realizing that I needed to be in the /public_html/includes/languages/custom\english.php

I wasn't going to the custom one first, but your suggestion did it. Well I removed more from that folder and it's fixed.

THANK YOU FOR YOUR HELP!!!

:clap:

Kristy

s_t_e_v_e:

The page is pushed right becuase your left menu is wider than you want. It took a bit of finding, but the cause is a link to MORE in the Reviews box - you cannot see it becuase the color is white (#ffffff) In firefox, the link is beneath the title "Reviews" but in IE7, it tries to put it to the right and side of the header image, and pushes the table wide...

one method to fix it, would be to edit;

\includes\languages\english.php

find;

//text for sidebox heading links
define('BOX_HEADING_LINKS', '  [more]');

replace with;
//text for sidebox heading links
define('BOX_HEADING_LINKS', ' [more]');