I simply want to re-arrange the contact page, "map" on the bottom, "additional info" on the top and the form in the middle of CONTACT.
In the templates/jf_taman/index.php file, move below code to under "<jdoc:include type="component" />":
<?php if(JRequest::getVar('option') == 'com_contact') : ?>
<h1><?php echo $doc->getTitle(); ?></h1>
<div id="jf-map">
<?php if ($this->params->get('map')) : ?>
<div id="map">
<div id="googleMap" style="height: 450px;width:100%;"></div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
Also I'd like to re-arrange the form itself, simple <br> between the fild description and the field itself..
You can see the templates/jf_taman/html/com_contact/contact/default_form.php file.
joomfreak