jarea
Forum Replies Created
-
Firstly make sure you have added the submit button
Dooh!
Works well once I add the submit button. (I had been modifying existing forms so adding the submit button never came up).
Thanks!
Update, as some have indicated the problem is associated with css in the template interfering with the submit button, but not in my case.
I have two forms with no submit buttons and one form where the submit button works fine (jimrea dot com / contact-page-jim-rea-realtor). All using the same template.
Did this feature ever get added in the update to Form Maker? If so, how is it used?
Thanks!
Forum: Fixing WordPress
In reply to: Running WordPress and Drupal on Same Server – This works!I went back and made on small edit to the rewrite condition in the web root .htaccess, telling it to pass on both the wp4 and zenphoto directories.
RewriteCond %{REQUEST_URI} !^(wp4|zenphoto)
Forum: Fixing WordPress
In reply to: Strange Imagemapping Behavior – Hotspot Registration IncorrectI opened the pages with Firebug and was able to graphically show the actual area of the hotspots in the two situations.
Here are a couple of screen grabs showing the different behavior
This is an image of the page generated by WP edit>preview where the hotspot is properly mapped on top of the image.
img1This is an image of the live page showing the offset between the image and the hotspot.
img2Forum: Fixing WordPress
In reply to: Strange Imagemapping Behavior – Hotspot Registration IncorrectFixed it -> added position: absolute; to the CSS for #PPMap!
Drat – it did fix my offset problem but broke my CSS for the footer part of the page.
Forum: Fixing WordPress
In reply to: ImageMap and MM_swapImage FunctionTurns out I was not doing the function call(s) correctly. Got it working now. For others interested in this, here is the correct code (or at least code that works) with all four of the areas on the imagemap.
<body onLoad="MM_preloadImages('../images/GeoShapes Triangle.png')" onLoad="MM_preloadImages('../images/GeoShapes Star.png')" onLoad="MM_preloadImages('../images/GeoShapes Square.png')" onLoad="MM_preloadImages('../images/GeoShapes Circle.png')"> <img src="../images/GeoShapes.png" alt="This is your Alt Text" name="TestImage" border="0" usemap="#imageMapShapes"></a> <map name="imageMapShapes"> <area onMouseOut="MM_swapImgRestore()" onmouseover="MM_swapImage('TestImage','','../images/GeoShapes Triangle.png',1);" shape="rect" coords="218,217,432,430" alt="" target="_parent" href="../***Triangle Name***.html" alt="Triangle Name" title="Triangle Name"> <area onMouseOut="MM_swapImgRestore()" onmouseover="MM_swapImage('TestImage','','../images/GeoShapes Star.png',1);" shape="rect" coords="2,218,215,431" alt="" target="_parent" href="../***Star Name***.html" alt="Star Name" title="Star Name"> <area onMouseOut="MM_swapImgRestore()" onmouseover="MM_swapImage('TestImage','','../images/GeoShapes Circle.png',1);" shape="rect" coords="2,2,214,213" alt="" target="_parent" href="../***Circle Name***.html" alt="Circle Name" title="Circle Name"> <area onMouseOut="MM_swapImgRestore()" onmouseover="MM_swapImage('TestImage','','../images/GeoShapes Square.png',1);" shape="rect" coords="217,3,430,213" alt="" target="_parent" href="../***Square Name***.html" alt="Square Name" title="Square Name"> </map>
Also added the function swapImgRestore() to the functions in the header.
function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; }
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] lingering borderP.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!
Done!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] lingering borderI obviously overlooked that. That did the trick.
Thanks for the clarification and the great plug-in.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] lingering borderjimrea dot com/wp4/?page_id=653
Lines underneath Name, Phone, Email, etc.
Also this is the added css code
.tablepress-id-N, .tablepress-id-N tr, .tablepress-id-N tbody td, .tablepress-id-N thead th, .tablepress-id-N tfoot th { border: none !important; }
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] lingering borderI added the recommended css and the !important keyword and I still get thin lines at the bottom edge of each row in Firefox, Safari and Chrome.