|
User Details |
message
|
|
Clay Vandament
post date:
2011-08-22 18:04:16
|
The business site template has an error in the template.css file and csslayouts.css.
Even when I put it up without editing it is scattered all over the page not displaying properly.
|
|
|
Clay Vandament
post date:
2011-08-22 18:48:00
|
The business site template has an error in the template.css file and csslayouts.css.
Even when I put it up without editing it is scattered all over the page not displaying properly. I am not able to find the problem
|
|
|
Clay Vandament
post date:
2011-08-23 01:16:44
|
|
There is an error of an end editable tag inside an editable region that i am unable to make editable because it says it is already editable. I cannot edit inside the flexi layouts because it says it has to be edited from the dwt file which does what I said previously. I am unable to edit . It is locked. I have spent hours fighting with this. Not liking this template right now. It would have beenquicker to start from scratch even though it is a really nice template if it only would work.
|
|
|
Elena Tepardea [Extend Studio]
post date:
2011-08-24 04:49:20
|
Hello,
Make sure you have inserted correctly the template in a site. You must not use additional folders. Follow this link to understand more about templates: http://www.extendstudio.com/dreamweaver-templates-pack/documentation.html
However, if you still have problems with your site, please send us a link or an archive with your project to support[at]extendstudio.com.
Regards,
Elena Tepardea
|
|
|
Clay Vandament
post date:
2011-08-24 16:49:56
|
Thank You, I can't edit them-everything locks up unless they are left in the template folder. I took them out and put them with the root files. They lock up when I do that. It is working good now.
One more question when you get the chance: I like this form and don't want to change it. Do you know the best way to activate this code. ( what ypoe of page to send it. formto email.php doesn't seem to work well. How is the best way to use this? What should I set up and put in the href="#". If I use the php I have to change the button look and feel.
<form class="contact_form">
<input type="text" value="Name*" />
<input type="text" value="Email*" />
<textarea>Message</textarea>
<a class="submit_button" href="#"></a>
</form>
|
|
|
Elena Tepardea [Extend Studio]
post date:
2011-08-25 04:33:39
|
Hello,
In order to make a form active you have give it the 'action' attribute. The required action attribute specifies where to send the form-data when a form is submitted. Your syntax should be like this: <form class="contact_form" action="value">. The value represents the path where the data is sent.
This is an example of a common form:
<form action="form_action.php" method="get">
First name: <input type="text" name="fname" /><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" value="Submit" />
</form>
Also you can see more details on how a php form should function by following this link: http://www.w3schools.com/php/php_forms.asp
Regards,
Elena Tepardea
|
|