Workflow Extension for Joomla!

This plugin provides provides version annotation, content staging and review workflow for Joomla articles. Revise, edit and approve article changes before going live with those changes.

Read more...

Donations and Payments for Joomla!

Creates a secure donation form on your Joomla 1.5, 1.6 or 1.7 Web site. Processes transactions through gateways including Authorize.NET, PayPal Standard, PayPal Website Payments Pro or Verisign (now PayPal)

Read more...

Simple Content Versioning

This extension provides document version control for Joomla.  It saves a backup of every article when the content changes.  It then allows you to choose a prior version of a given document directly from the editor.

Read more...

Locator Component for Joomla

We have created a new component for Joomla! 1.5 and 1.6, 1.7 and 2.5 that allows for the search, display and management of a list of locations on your Joomla Web site. This can be used as a dealer locator, store locator, vendor list or any other type of location

Read more...

This is due to your CSS adding *padding* to some element inside the google popup window. You can clear padding off all elements with

.popupWindow *{
padding:0 !important;
}
Published in Locator

Add this to your CSS

.found{display:none;}
Published in Locator

Yes.  Using CSS, you can float your form elements left to right.  First, we float our form elements with

.locator_form {
border: 1px solid #EEE;
margin-bottom: 5px;
overflow: auto;
float: left;
}

Then ensure the form itself pushes the map down.

.com_locator_forms {
overflow: auto;
}

Now make sure the submit button is on its own line below the form elements.

.locator_submit {
clear: both;
float: left;
}
Published in Locator

Use the h2.com_locator_title class.  For example, to change the marker title link to black text, use this CSS

h2.com_locator_title  a {
color:black !important; font-size:16px !important;
}
Published in Locator

Use the .popupWindow class.  For example, to change the marker title link to black text, use this CSS

.popupWindow h2 a {
color:black !important;
}

To change all text in the window to black, use this CSS

.popupWindow * {
color:black !important;
}
Published in Locator

Popular articles