• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML (dreamweaver) question

Scrapster

Diamond Member
If you put a button on your web page (whether it be search button, submit button, whatever..) You usually need to put it inside of a red dotted outline in order for the button to know what to do after it is pressed. I copied and pasted a submit form to dreamweaver and I'm changing the layout. My problem is I can't edit the size of that red outlined box. I'd like to put my button on the left side of the screen but the red box won't follow this. Does anyone know how I can edit this? And if you have no idea what I'm talking about, then I'm probably clueless myself.
 
delete the red box, go to where you want it, insert form, click inside the form (red box) and insert a button
 
I've got a HTML rant for you. I hate F@cking GeoSh!tties. Everytime I try to create a page and load it up to my site it always winds up fscking up my background and my images don't show up half of the time. :|:|:|.

Screw this sh!t!

Sorry, had to get that out, and this looked like a good place to do it.

About your question, why don't you create a new button and just give it the same properties.
 
The red lines are <form></form> tags

so if you have

<form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;&quot;>
<input type=&quot;text&quot; name=&quot;textfield&quot;>
</form>

just remove

<form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;&quot;>
</form>

and you won't see red line anymore.

 
Back
Top