I see that I have a paragraph tag in between the search bar and the map, which is kind of dumb. I just pushed version 1.1.2. In it I removed the paragraph and set a bottom margin on the search to 5 pixels.
If you want to change that, add custom CSS like this:
#filter-form { margin-bottom: 5px }
Change 5px to whatever you want.
Ok thanks for your answer I just upgraded the pluging and got this on my add a yard sale page ….some of the code is showing beneath the entry boxes……
Email* value=””
onblur=”ysFormJs_1430580393_7204.fetchLatLong()”/>
Street* value=””
onblur=”ysFormJs_1430580393_7204.fetchLatLong()”/>
City
Date of Sale id=”state”
type=”text”
size=”2″
value=””
onblur=”ysFormJs_1430580393_7204.fetchLatLong()”/>
For Sale Items*
cols=”30″>
type=”submit” value=”Submit”/>
I would send you a PDF of the page but cant upload here can you?
I’m not seeing this on mine. And that page/code did not change.
I think what you posted is not showing everything. You should make that block “code” in the editor when you paste it in.
Does a Ctl-Shift-Refresh of the browser clear it up?
Did you change the form label for “email” to something with a “>” in it?
No the only label I changed was the “State” to Date of Sale. I needed to tell people when their sale was taking place.
You maybe able to see this at http://www.ysnr.ca/add-a-yard-sale/
I am less than a novice at coding, sorry. I did not edit anything else just unchecked a few things in the shortcode preps.
if you like I can give you access to the backend if you wanna have a closer look?
Also Ctl-Shift-Refresh did nothing.
I see. What is happening is your WordPress site is injecting <br/> line break tags every time it it sees a line break in code.
So this:
<td><input name="email" id="email" type="text" size="30"
value=""
onblur="ysFormJs_1430583293_5997.fetchLatLong()"/>
becomes:
<td><input name="email" id="email" type="text" size="30"<br />
value=""<br />
onblur="ysFormJs_1430583293_5997.fetchLatLong()"/>
And the browser thinks the <input> tag is being closed.
I’m not sure how to turn that off. I’ll just update the plugin not to have line breaks inside an input tag.
Great thanks I will let you know how it works out.
Thank you Sir
I just pushed version 1.1.3
The new version fix seemed to work just a little bit of the code
cols=”30″>
is peeking out in the area where you add items for sale
Pushed 1.1.4
But you will still get extra space between elements because of the injection of BR tags. You should try to eliminate them per the the post I cited.
Ok I will… thank you very much