
I'm lost in css, now trying borderstyle and don't get it.
In styles I put: borderstyle="miloborder";
In stylesheet I put:
.miloborder{
border-bottom: 4px solid #c5c5c5;
}
What am I doing wrong?
I haven't even got to ON borderstyle.

Thanks
maz
Code: Select all
.miloborder{
border-bottom: 4px;
}
.miloborderoff{
background: #ffffff;
border-bottom: solid #c5c5c5;
}
.miloborderon{
background: #ffffff;
border-bottom: solid #ff0033;
}
Code: Select all
aI("text=<img src=xarrowdn.gif border=0> About Us;showmenu=aboutus;cursor=arrow;status=submenu about us;");
Code: Select all
with(xptopmain=new mm_style()){
oncolor="#ff0033";
offcolor="#6699ff";
borderstyle="miloborder";
offclass="miloborderoff";
onclass="miloborderon";
padding=3;
fontsize="11px";
fontfamily="tahoma, verdana, sans-serif";
pagecolor="#ff0033";
pagebgcolor="transparent";
menuwidth="100%";
itemheight="24px";
}
Code: Select all
.miloborder{
border-bottom-width: 4px;
}
.miloborderoff{
background: #ffffff;
border-top:0px;border-right:0px;border-left:0px;border-bottom: 4px solid #c5c5c5;
}
.miloborderon{
background: #ffffff;
border-bottom: 4px solid #ff0033;
}
Code: Select all