Hi all
When someone fills out my forms I get an email with the stuff they typed in.
Usually last if says X: and Y: with values next to each.
Ex
X:84
Y:125
CAN I HAVE THESE not show in the email?
Thanks
Barry
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
i got it for the PHP feedback form. I have name send button ‘send’ in 2 places.
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
I have name send button ‘send’ in 2 places.
For the Send button you have to ensure that there is no entry in the ‘Value’ section. With the Button selected look under the 3rd Tab in the Inspector.
A link to the other example that shows the co-ordinates in the submission would help.
D
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
I believe you’re your an image for the submit button? It’s giving you the co-odinates where you clicked on the image.
Try using CSS to style the button instead. There’s lots of Button generators out there like… http://www.bestcssbuttongenerator.com
Or make your image the button background image in CSS.
David Owen { Freeway Friendly Web hosting and Domains }
http://www.ineedwebhosting.co.uk | http://www.PrintlineAdvertising.co.uk
On 17 Oct 2015, at 03:14, Hoffkids email@hidden wrote:
Hi all
When someone fills out my forms I get an email with the stuff they typed in.
Usually last if says X: and Y: with values next to each.
Ex
X:84
Y:125
CAN I HAVE THESE not show in the email?
Thanks
Barry
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
David, I went to that site about the button and made one.
Then I got the CSS code? is that right??
Not sure what to do with it now since I never included my own CSS code on my site.
Thanks,
Barry
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options
When you ‘get css’ you are provided code that looks something like
.myButton {
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
background-color:#5cbf2a;
}
.myButton:active {
position:relative;
top:1px;
}
Note the ID of your FW generated button and replace all instances of ‘.myButton’ with ‘#myID’ so it looks like
#myID {
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
}
etc.
Wrap the style code in style Tags such as
<style type="text/css">
your styles here
</style>
Paste this all in Page>html Markup in the before end slot and you should be done.
David
freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options