Start a new category group with cPath=1_29 (UK 14). Don't give it a heading, but style that and cat_group 1_26 in the stylesheet - perhaps like
Code:
#catGroup1_26 li {width: 70px;}
#catGroup1_29 {
position: relative;
width: 70px;
height: 0; /*this may cause problems in some browsers - can't tell until you have it live to test*/
top: -150px; /*play with numbers as required*/
left: 70px;
}
position: absolute; would be better for this situation, but there is currently no good container for the positioning context. If you give Womenswear (cPath 1) a category group so it gets an id, that can be used to address the 1_29 position. Then you would do:
Code:
#catGroup1 {position: relative;}
#catGroup1_26 li {width: 70px;}
#catGroup1_29 {
position: absolute;
width: 70px;
bottom: 0; /*play with numbers as required*/
left: 70px;
}
Bookmarks