Forums / Templates, Stylesheets, Page Layout / Bug Opera with categories image display

Bug Opera with categories image display

Locked
Results 1 to 5 of 5
This thread is locked. New replies are disabled.
21 Dec 2007, 01:03
#1
cshart avatar

cshart

Zen Follower

Join Date:
Mar 2005
Posts:
370
Plugin Contributions:
0

Bug Opera with categories image display

In IE everything looks great but in Opera the display of the categories at the bottom of the main page is in one column down the page. Looks awful.

This is a site that might attract foreign visitors who are more likely to use Opera so it does matter.
Opera
Version
9.24
Build
8816
Platform
Win32
System
Windows 2000
Java
Sun Java Runtime Environment version 1.6
XHTML+Voice
Plug-in not loaded

1.3.8a zen cart
21 Dec 2007, 01:12
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,506
Plugin Contributions:
173

Re: Bug Opera with categories image display

Um ... perhaps a URL where this could be seen might be of some value.
And also a list of addons/contributions you have installed, and a list of all differences between your site and a fresh Zen Cart install.
21 Dec 2007, 03:17
#3
cshart avatar

cshart

Zen Follower

Join Date:
Mar 2005
Posts:
370
Plugin Contributions:
0

Re: Bug Opera with categories image display

http://www.palam.org/bkstore3

Some english changes not much else that would effect the coding.
Stylesheet color changes

DrByte:

Um ... perhaps a URL where this could be seen might be of some value.
And also a list of addons/contributions you have installed, and a list of all differences between your site and a fresh Zen Cart install.
21 Dec 2007, 04:28
#4
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,506
Plugin Contributions:
173

Re: Bug Opera with categories image display

Yes, it's a bug ... in your own stylesheet.

You're missing the float:left for the categoryListBoxContents class.

Bandage: add this to your stylesheet:
.categoryListBoxContents {
	float: left;
	}


You probably need to check your entire stylesheet to see what other things you may have left out when you were updating it.
21 Dec 2007, 05:33
#5
cshart avatar

cshart

Zen Follower

Join Date:
Mar 2005
Posts:
370
Plugin Contributions:
0

Re: Bug Opera with categories image display

Thank you fixed it right up.



DrByte:

Yes, it's a bug ... in your own stylesheet.

You're missing the float:left for the categoryListBoxContents class.

Bandage: add this to your stylesheet:
.categoryListBoxContents {
	float: left;
	}


You probably need to check your entire stylesheet to see what other things you may have left out when you were updating it.