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...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...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...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;
} Add this to your CSS
.found{display:none;} 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;
} 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;
}
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;
}