3
I'm no longer having problems with the menu breaking up into multiple unwanted columns. Instead on another [dropdown] menu it is creating a pop of arbitrary width. The source code of the generated page has this:
<select size="1" name="multimenu03"
onchange="Go(multimenu03.options[multimenu03.options.selectedIndex].value)">
<option value="" selected="selected">
option>
Why is this generated? multimenu_doplist.html has this source code
<{if $block.format == "droplist"}>
<form action="">
<select size="1" name="multimenu<{$block.mm}>"
<{else}>
<form action="" method="post">
<select size="<{$block.marquee_height}>" name="multimenu<{$block.mm}>"
<{/if}>
onchange="Go(multimenu<{$block.mm}>.options[multimenu<{$block.mm}>.options.selectedIndex].value)">
<option value="" selected="selected">
<{section name=spacer loop=$block.block_size}><{" "}><{/section}>
option>
Although not a coder of any ability I'm guessing the loop generates s until $block.block_size is reached but I don't see how its value is determined. Can anyone decipher this for me? And what is the solution?
Update: Solved it! the title width controls how many characters are allowd in an entry but block width controls the width of the dropdown control. Pretty obvious really as long as you ignore its placement under Animation Settings
Lee
-----------
Complexity? Its just lots of simple things connected in lots of simple ways...