Zen Cart Logo
Forums / General Questions / Anyone know what contribution will do this....

Anyone know what contribution will do this....

Locked

Views: 1,633

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
23 Sep 2006, 2:50 PM
#1
reesy avatar

reesy

Totally Zenned

Join Date:
Mar 2005
Posts:
535
Plugin Contributions:
3

Anyone know what contribution will do this....

Make a category menu like this one?

http://www.cookfusion.be/

Thanks in advance.

23 Sep 2006, 3:05 PM
#2
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Anyone know what contribution will do this....

Reesy that looks like better categories with some tweeking to achieve it.

Which elements are you wanting to mimic ? You may need only tweeking on the categories box portion of the css also...

23 Sep 2006, 3:18 PM
#3
reesy avatar

reesy

Totally Zenned

Join Date:
Mar 2005
Posts:
535
Plugin Contributions:
3

Re: Anyone know what contribution will do this....

Awesome Tina, a big hug in your direction... Better categories, now installed, tweaked, and looking good.

Thank you!

23 Sep 2006, 3:19 PM
#4
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Anyone know what contribution will do this....

:D Glad you got it hun !

25 Sep 2006, 4:40 PM
#5
reesy avatar

reesy

Totally Zenned

Join Date:
Mar 2005
Posts:
535
Plugin Contributions:
3

Re: Anyone know what contribution will do this....

ah but not quite perfectly it seems :cry:
Is there any way to make a subcategory a different color, not just the text which I think comes from...

else {
        if ($box_categories_array[$i]['has_sub_cat']) { 
        $content .= cat_with_pointer($box_categories_array[$i]['name'], 'right', $spacer); }
        else { 
        $content .= cat_with_pointer($box_categories_array[$i]['name'], 'nosub', $spacer); }
      }

ah edited to say I can just add another div in here to control it I think... let me see...

25 Sep 2006, 5:09 PM
#6
reesy avatar

reesy

Totally Zenned

Join Date:
Mar 2005
Posts:
535
Plugin Contributions:
3

Re: Anyone know what contribution will do this....

Bum, that didnt work.

28 Sep 2006, 2:23 PM
#7
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Anyone know what contribution will do this....

Hi Reesy - I am looking at a classic template 1.3.5 and no better categories installed and I see this :
/* categories box parent and child categories */

A.category-top, A.category-top:visited {

color: #008000;

text-decoration: none;

}

A.category-links, A.category-links:visited {

color: #004080;

text-decoration: none;

}

A.category-subs, A.category-products, A.category-subs:visited, A.category-products:visited {

color: #FF0000;

text-decoration: none;

}

Each element is pretty obvious which it is referrering to - so I would find those controls in your bettercategories css and split them out so that you can apply background colors to individual elements.

Hope that helps a little more.

28 Sep 2006, 3:25 PM
#8
reesy avatar

reesy

Totally Zenned

Join Date:
Mar 2005
Posts:
535
Plugin Contributions:
3

Re: Anyone know what contribution will do this....

Thank you Tina, you are my newest bestest CSS buddy :hug:
You know when you look at something too much you end up thinking its much harder than it really is... I was miles too deep here.