quote:
Originally posted by Basilis
Can you explain further what expand/collapse code is? I have never heard of it.
Under line 32 (of the unchanged styles 1004/1009), you'll find:
code:
Element[Class="ExpandCollapseIcon"]
{
ContentAlign:MiddleCenter;
Content:rcimg(1382);
}
Element[Class="ExpandCollapseIcon"][MouseFocused]
{
Content:rcimg(1383);
}
then replace it (on both 1004/1009), with your custom code:
code:
Element[Class="ExpandCollapseIcon"][ContentIndex=0]
{
ContentAlign:MiddleCenter;
Content:rcimg(59001);
}
Element[Class="ExpandCollapseIcon"][ContentIndex=1]
{
ContentAlign:MiddleCenter;
Content:rcimg(59002);
}
Element[Class="ExpandCollapseIcon"][MouseFocused][ContentIndex=0]
{
Content:rcimg(59003);
}
Element[Class="ExpandCollapseIcon"][MouseFocused][ContentIndex=1]
{
Content:rcimg(59004);
}
of course, with your pic ids...i used them as an example!
here's the result:
By the way...thanks stuart!
the bar img worked!