Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#26 07-02-2014 10:22:29

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

What class are you using for the 'product menu' in desktop mode?


Nick Hendler

Offline

 

#27 08-12-2014 12:08:13

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

Did you see this screenshot Nick?

webmaster wrote:

Not sure I understand.  Can you post a screenshot?


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#28 08-13-2014 10:21:33

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

What class are you using for the 'product menu' in desktop mode?


Nick Hendler

Offline

 

#29 08-13-2014 10:43:19

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

skin_widgetclass_SIDEMENU

webmaster wrote:

What class are you using for the 'product menu' in desktop mode?


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#30 08-14-2014 10:03:09

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

Somewhere in your CSS either the left margin for the skin_widgetclass_SIDEMENU ul li ul is missing or set to zero.  Fix your CSS and you'll be good to go.


Nick Hendler

Offline

 

#31 08-14-2014 11:11:57

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

Let me see if I can locate that line of code. I take it you mean the all.css file. Say nick, is it possible to create a drop down menu in the top menu area? What would that code look like?

webmaster wrote:

Somewhere in your CSS either the left margin for the skin_widgetclass_SIDEMENU ul li ul is missing or set to zero.  Fix your CSS and you'll be good to go.


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#32 08-15-2014 08:37:57

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

Change the group of the widget you want at the top to 'NAVMENU' and it's class to 'skin_widgetclass_NAVMENU'.  Your CSS for the SIDEMENU was probably updated/changed in overrides.css, but could be in all.css.


Nick Hendler

Offline

 

#33 08-15-2014 08:51:53

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

Nick, when I say the top I mean the very top menu location above the header graphic, not the navmenu location. I tried that with the products group (old category menu) and it does make the related categories work, but does nothing to correct the related pages issue that is also affected. I'll have to try and check for this instance at issue in the overrides ccc file. When I tried to cxheck ther and in the all.cc yesterday I could not locate the item of which you spoke.

webmaster wrote:

Change the group of the widget you want at the top to 'NAVMENU' and it's class to 'skin_widgetclass_NAVMENU'.  Your CSS for the SIDEMENU was probably updated/changed in overrides.css, but could be in all.css.

Here is the overrided.css code that should address this

Code:

/* +------------------------------------------------------------+ */
/* | Required Classes: Skin Widget - SIDEMENU | */
/* +------------------------------------------------------------+ */

.skin_widgetclass_SIDEMENU .skin_widgettitle {
     color: #000000;
     font-weight: bold;
     font-size: 12px;
     padding: 4px 6px 4px 6px;
     margin: 0px 0px 6px 0px;
     border: 1px solid #DEDEDE;
     background-color: #EFEFEF;
     -moz-border-radius: 6px 6px 6px 6px;
     -webkit-border-radius: 6px 6px 6px 6px;
     border-radius: 6px 6px 6px 6px;
     }

.skin_widgetclass_SIDEMENU .skin_widgetcontent {
     margin: 0px 0px 20px 0px;
     padding: 6px 6px 6px 6px;
     border: 1px solid #DEDEDE;
     -moz-border-radius: 6px 6px 6px 6px;
     -webkit-border-radius: 6px 6px 6px 6px;
     border-radius: 6px 6px 6px 6px;
     background-image: url('../media/gradientup.png');
     background-position: bottom left;
     background-repeat: repeat-x;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu ul {
     -moz-border-radius: 6px 6px 6px 6px;
     -webkit-border-radius: 6px 6px 6px 6px;
     border-radius: 6px 6px 6px 6px;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li a {
     color: #333333;
     font-weight: bold;
     display: block;
     text-decoration: none;
     padding: 6px 6px 6px 16px;
     background-image: url('../media/fenav.png');
     background-repeat: no-repeat;
     background-position:  6px 8px;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li a:hover {
     color: #000000;
     text-decoration: none;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li ul {
     width: 195px;
     margin: -26px 0px 0px 180px;
     -moz-box-shadow: 2px 2px 2px #555555;
     -webkit-box-shadow: 2px 2px 2px #555555;
     box-shadow: 2px 2px 2px #555555;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li ul li {
     width: 195px;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li:first-child a {
     border-top-left-radius: 6px;
     -moz-border-radius-topleft: 6px;
     -webkit-border-top-left-radius: 6px;     
     border-top-right-radius: 6px;
     -moz-border-radius-topright: 6px;
     -webkit-border-top-right-radius: 6px;
     }

.skin_widgetclass_SIDEMENU .skin_widgetmenu li:last-child a {
     border-bottom-left-radius: 6px;
     -moz-border-radius-bottomleft: 6px;
     -webkit-border-bottom-left-radius: 6px;     
     border-bottom-right-radius: 6px;
     -moz-border-radius-bottomright: 6px;
     -webkit-border-bottom-right-radius: 6px;
     }

Last edited by mdowning (08-15-2014 09:17:18)


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#34 08-15-2014 09:39:38

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

This is the line governing the margin:

margin: -26px 0px 0px 180px;

For the menu styling, it's easiest to copy the HTML and CSS for a working menu, then duplicate/change class names, etc. in the CSS and HTML until you get your desired result.  You really need to understand HTML and CSS to get a custom CSS dropdown menu working, even with the CCP examples as a starting point.


Nick Hendler

Offline

 

#35 08-15-2014 09:51:17

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

Ok, let me tinker with this setting in the over rides.css file. that seems to be the place that may be causing this issue to stand out. I am thinking that margin needs to be set like the rest of that class.

webmaster wrote:

This is the line governing the margin:

margin: -26px 0px 0px 180px;

For the menu styling, it's easiest to copy the HTML and CSS for a working menu, then duplicate/change class names, etc. in the CSS and HTML until you get your desired result.  You really need to understand HTML and CSS to get a custom CSS dropdown menu working, even with the CCP examples as a starting point.


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#36 08-15-2014 10:13:58

mdowning
Member
From: California
Registered: 11-05-2010
Posts: 725
Website

Re: Alter location of Categories Fly Out on Side Menu

Nick, I'm not having any luck here. What do you charge to fix this one little nuisance issue?


http://tuxedothemes.org/
Wordpress Themes for business, blogs and personal use.

Offline

 

#37 08-18-2014 08:48:39

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

We've got a ticket in and quoted on this now...


Nick Hendler

Offline

 

#38 03-01-2016 12:43:46

geneva66
Member
Registered: 02-02-2005
Posts: 33

Re: Alter location of Categories Fly Out on Side Menu

Clickcartpro v8
Hi,
Currently I have 50 Categories under the 'shop by brand' menu on the frontpage under the main category so when they display they display in one long narrow box which means a lot of scrolling down.
I would like to change the display of these categories so that when I click on the main category the 50 subcategories are displayed in a wider table i.e in rows.
Would appreciate any assistance with this.
Many Thanks

Last edited by geneva66 (03-02-2016 06:25:05)

Offline

 

#39 03-02-2016 09:34:30

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Alter location of Categories Fly Out on Side Menu

All of the pertinent CSS is referenced in this thread.  I would imagine you'll want to expand the width of the ul's and then set the li's to a percentage width and float them.


Nick Hendler

Offline

 

Board footer