Saturday 26 July 2003 3:20:12 am
I hope that there is someone that can help me a bit here. I have trouble with setting the size of the form. I tried to put the form inside a table and set the width of the table but that didn't work. I also tried to set style in a stylesheet, but that didn't work either. Here is the code I am using:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<body>
{default content_object=$node.object
content_version=$node.contentobject_version_object node_name=$node.name} <form method="post" action={"content/action"|ezurl}>
<b>Subject</b>
<div class="skjema">{attribute_view_gui attribute=$node.data_map.subject}</div>
<b>Feedback</b>
<div class="skjema">{attribute_view_gui attribute=$node.data_map.feedback}</div>
{section name=ContentAction loop=$content_object.content_action_list show=$content_object.content_action_list}
<div class="block">
<input type="submit" name="{$ContentAction:item.action}" value="{$ContentAction:item.name}" />
</div> {/section}
<input type="hidden" name="ContentNodeID" value="{$node.node_id}" />
<input type="hidden" name="ContentObjectID" value="{$content_object.id}" /> <input type="hidden" name="ViewMode" value="full" /> </form> {/default}
</body> </html> Can someone please tell me what I am doing wrong here? Regards from Tor Olav
|