Hi,
You have two options. Let's use the surfin submenu. You set the subimage position to be left, so in the style section you'd add subimageposition='left'; Then in each item that doesn't have a subimage you put a transparent image 10px wide and set padding, position etc. in the aistring like this
Code: Select all
aI("image=trans.gif;imagewidth=10px;imageposition=left;imagepadding=5;text=Privacy Protection, CCleaner;url=http://www.piriform.com/ccleaner;target=_top;");
The second option is to set the itemwidth of those submenus. Again in the surfin submenu the widest width seems to be less than 300px, so you'd do this in the menu section
Code: Select all
with(milonic=new menuname("Surfin")){
style=StyleSub;
margin=0;
top="offset=0";
left="offset=5";
itemwidth=300;
Those were the only solutions I found. Now, the first solution is the more involved but the better with regards to users text/font choices since it would be fixed. I.E. the subimages are 10px wide and the padding for them is 4px, so the trans image and padding in the non subimage items will be the same as the subimage items, no matter the text size, font choices of users. The setting of item width as in solution two is the easier, but not as 'fixed' with regard the users choices as to font and text size.
Hope this helps
Ruth