Zen Cart Logo

Category Issues

Views: 784

Results 1 to 9 of 9
7 Jan 2011, 7:46 PM
#1
eheberline avatar

eheberline

New Zenner

Join Date:
Jan 2011
Posts:
5
Plugin Contributions:
0

Category Issues

I'm really new to Zencart, and web designs all together so this could be a really easy fix that I am over looking. For some reason in my Categories Box the Individual Categories flicker and switch back and forth in Mozilla and Internet Explorer. In Mozilla they do not even work when clicked on. Im using a template, and have attempted to modify it on my own, i do not know if i may have messed something up in the stylsheet or what the issue is. Any input would be appreciated. Thank You.

Here is a link to my store:http://designsbylittlemrsliz.com/store/

Thanks..

7 Jan 2011, 8:20 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Category Issues

Try switching to the classic template from your admin and see if this is template related

7 Jan 2011, 8:27 PM
#3
eheberline avatar

eheberline

New Zenner

Join Date:
Jan 2011
Posts:
5
Plugin Contributions:
0

Re: Category Issues

It is the template...when i changed it to the default template the issue went away. So is that a bad thing?? Fixable hopefully, I spent too long changing this template to something i liked. Or do you suggest not using that template?

7 Jan 2011, 8:55 PM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Category Issues

You will need to go back to the custom template so we can see exactly what the issues are, and hopefully a way to fix them.

7 Jan 2011, 9:09 PM
#5
eheberline avatar

eheberline

New Zenner

Join Date:
Jan 2011
Posts:
5
Plugin Contributions:
0

Re: Category Issues

lol...yep that would probably help sorry. :)

7 Jan 2011, 9:26 PM
#6
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Category Issues

Some of your stylesheet edits have created invalid rules which may cause everything following to be ignored, but your prime issue is that you have set the category hover to display: none;```
.betterCategories a:hover, .betterCategories a:active,
.betterDocuments a:hover, .betterDocuments a:active,
.betterEzpages a:hover, .betterEzpages a:active,
.betterInformation a:hover, .betterInformation a:active,
.betterMoreinformation a:hover { display: none; }, .betterMoreinformation { display: none; },
.betterBestsellers a:hover, .betterBestsellers a:active {
background-color: #e7e0ca;
color:#444;
margin-top: 1px;
}

7 Jan 2011, 9:41 PM
#7
eheberline avatar

eheberline

New Zenner

Join Date:
Jan 2011
Posts:
5
Plugin Contributions:
0

Re: Category Issues

I really appreciate you taking time out to help me. I removed the commas, and removed the {display:none;} although I'm not sure removing it was the correct thing to do. Should i change it do something else because the issue seems to still be there? Again thank you.

7 Jan 2011, 9:46 PM
#8
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Category Issues

You have this

.betterCategories a:hover, .betterCategories a:active,
.betterDocuments a:hover, .betterDocuments a:active,
.betterEzpages a:hover, .betterEzpages a:active,
.betterInformation a:hover, .betterInformation a:active,
.betterMoreinformation a:hover .betterMoreinformation  [B]{ display: none; }[/B]
.betterBestsellers a:hover, .betterBestsellers a:active {
	background-color: #e7e0ca;
	color:#444;
	margin-top: 1px;
}

It should be

.betterCategories a:hover, .betterCategories a:active,
.betterDocuments a:hover, .betterDocuments a:active,
.betterEzpages a:hover, .betterEzpages a:active,
.betterInformation a:hover, .betterInformation a:active,
.betterMoreinformation a:hover .betterMoreinformation, 
.betterBestsellers a:hover, .betterBestsellers a:active {
	background-color: #e7e0ca;
	color:#444;
	margin-top: 1px;
}
7 Jan 2011, 9:50 PM
#9
eheberline avatar

eheberline

New Zenner

Join Date:
Jan 2011
Posts:
5
Plugin Contributions:
0

Re: Category Issues

:) Thank You SOOOOOOO much!! You guys are all awesome, the issue is fixed. Have a great day!!:clap: