Active
Project:
CCK Fieldgroup Tabs
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
24 Jan 2009 at 13:29 UTC
Updated:
10 Oct 2012 at 19:06 UTC
Hi,
Is there an easy way to tweak code or CSS so that my group tabs display vertically instead of horinzontally?
Comments
Comment #1
sourabh.iitm commentedI too want this feature. R project managers considering this?
Comment #2
lavanyadotr commentedIs there any update on this ? i do need this
Comment #3
clown10 commentedYes, with css.
For example:
#tabs- .ui-tabs-nav {
position:absolute;
top:134px;
left:-5px;
width:200px;
height:200px;
z-index:100;
padding:20px 20px;
background:#444;
}
#tabs- .ui-tabs-nav li {
display:block;
margin:10px 0 0 0;
}
ul.primary li.active a {
background-color:#444;
border-color:#BBBBBB #BBBBBB #FFFFFF;
border-style:solid;
border-width:0px;
color:#DFB579;
}
ul.primary li a {
background-color:#444;
border-color:#BBBBBB;
border-style:solid solid none;
border-width:0px;
height:auto;
margin-right:0.5em;
padding:0 ;
text-decoration:none;
}
ul.primary li a:hover {
background-color:#444;
border-color:#CCCCCC #CCCCCC #EEEEEE;
text-decoration:underline;
}
ul.primary li.active a {style.css?l (Linie 2321)
background-color:#555555;
border-color:#BBBBBB #BBBBBB #FFFFFF;
border-style:solid;
border-width:0;
color:#DFB579;
}
ul.primary {
border-bottom:0px solid #BBBBBB;
border-collapse:collapse;
height:auto;
line-height:normal;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:5px;
padding:0 0 0 1em;
white-space:nowrap;
}
Comment #4
ckngI achieve the vertical tabs look using CSS, perhaps this can be added to the module as option to output a CSS class
Comment #5
daggar commentedThanks for this. Exactly what I needed.