CSS tweak needed
-
First, let me say nice job on this plugin ?? Just a couple things to make it better…
Hardcoding inline style for “float:left;” into the page means it will cause anything else on the page, for instance text/info added to the visual editor, to be forced to the right of the input fields. As most people won’t know the css work-around for this, I suggest you remove that from the main div.
<div id="fyr_find_reps" style="float:left;">
Additionally, you have inline style for the #map_canvas div and that div does not have the closing </div>. All this style can be put on a style sheet which can more easily be overridden.
<div class="wrap"> <div id="fyr_find_reps" style="float:left;"></div> <div id="map_canvas" style="width: 250px; height: 250px; float: left; position: relative; background-color: rgb(229, 227, 223); overflow: hidden;"> _MISSING_/DIV_ </div>
- The topic ‘CSS tweak needed’ is closed to new replies.