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.

#1 08-30-2012 18:26:17

timberguy
Member
Registered: 01-14-2008
Posts: 142

tab window height.

When adding a tabbed window to a product, where would I find the place to increase the height of that window?  The default window height is rather short, and most any image or video must be scrolled to see in its entirety.

Offline

 

#2 08-30-2012 19:53:05

timberguy
Member
Registered: 01-14-2008
Posts: 142

Re: tab window height.

I answered my self again. ;o)  Just in case someone else runs into this, I'm not exactly sure if it was the best way to do it, but I went in to System Dashboard > System > Displays > Update Skin >  DeskTop Skin  and then opened  overrides.css  and found this passage:

.tabscontent {
     padding: 6px;
     }

and changed it to:

.tabscontent {
     padding: 6px;
     height: 400px;
     }


Worked for me it looks like

Offline

 

#3 08-30-2012 19:53:31

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

Re: tab window height.

Thanks for posting.


Nick Hendler

Offline

 

#4 11-19-2012 01:02:06

firstaidcellular
Member
Registered: 09-27-2012
Posts: 4

Re: tab window height.

I tried that, but didn't work out for me.  Is this because I'm using the Joomla skin?

Offline

 

#5 11-19-2012 13:39:49

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

Re: tab window height.

Correct.  Your change would be made in {public}/media/skins/css/all.css.  Look for:

Code:

.tabscontent {
     height: 200px;
     overflow: auto;
     padding: 10px;
     }

And change the height.


Nick Hendler

Offline

 

#6 11-24-2012 22:46:56

firstaidcellular
Member
Registered: 09-27-2012
Posts: 4

Re: tab window height.

Ok thanks that worked.

Now how about making this a little more complicated.

I want the box to auto adjust to the content for each tab, is that possible?

Offline

 

#7 11-24-2012 22:53:27

firstaidcellular
Member
Registered: 09-27-2012
Posts: 4

Re: tab window height.

Answering my own question here,....

put auto instead of 300px and each tab will auto size to its specific content BOOYAH!!  Version 8 kicks butt!  I cursed 6 and 7 to the moon but 8 is just spectacular great job Kryptronic!


.tabscontent {

     height: auto;

     overflow: auto;

     padding: 10px;

     }

Offline

 

#8 11-26-2012 08:02:35

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

Re: tab window height.

Thanks!  Glad to hear you're enjoying v8.  We try smile


Nick Hendler

Offline

 

Board footer