heartfelt pleasantries:
bah, apologies for dropping out of my own thread, thought it was dead. The email notifications stopped coming. I was getting 2 notices each time someone posted to this thread, now none =[
Anyhoo, Andy: good stuff and thanks a ton! Great menu system
Und you mods, thanks for the attentiveness, this board looks to be pretty daggum busy, I'm sure your job is thankless. Well done.
more incompetent puzzling:
I've made me offbgcolor transparent:
Code: Select all
with(dropstyle=new mm_style()){
offcolor="#333366";
offbgcolor="transparent";
so that the specified bgimage would show:
Code: Select all
with(milonic=new menuname("products")){
itemwidth=120;
style=dropstyle;
alignment="left";
top="104";
bgimage="/images/layout/dropstyle_bg.jpg";
problem is some users with weak machines are reporting that the bgimage isn't showing up and the text gets muddled with that under it because of the transparent background. No problem I think, and I slap a bgcolor in thinkin it would give it something to fall back on:
Code: Select all
with(dropstyle=new mm_style()){
offcolor="#333366";
offbgcolor="#cfceed";
but that shows the bgcolor
over the bgimage. I was thinking normal css would apply like so:
background : color url();
Can I achieve my intent by doing this some other way? Is the documentation coming along yet so I may find out the answers to such questions myself (~goes to check after the fact~)?
=D thanks