For form moving down please add following css code in templates/gk_templatename/css/override.css and enable css override from template settings > advanced settings > css override "on".
- Code: Select all
.jform_contact_first { width: 51% !important; }
Regarding google map you can use any google map plugin from joomla extensions and while in editor you can wrap your plugin shortcode in a div element with a class of your own and use css to move it to where ever you would like.
Example would be from your contact us page.In editor window you would have something similar to below. Please note below is only an example and not a working example code.
- Code: Select all
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eget nisl eros. Suspendisse non sem leo. Suspendisse aliquet eros in erat commodo porttitor. Nam et tortor non enim ornare varius sit amet sed turpis.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eget nisl eros. Suspendisse non sem leo. Suspendisse aliquet eros in erat commodo porttitor. Nam et tortor non enim ornare varius sit amet sed turpis.
<div class="contactmap">
{gogglemappluginshortcode latitude="xxxx" longtitute="xxxxxx"}
</div>
You would then use #contactmap in css to move it to your preferred position.
See you around...