Author: jacopoc
Date: Wed Apr 2 07:40:42 2014 New Revision: 1583917 URL: http://svn.apache.org/r1583917 Log: Removed hardcoded formatting Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/profile/ManageAddress.ftl Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl?rev=1583917&r1=1583916&r2=1583917&view=diff ============================================================================== --- ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl (original) +++ ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl Wed Apr 2 07:40:42 2014 @@ -322,7 +322,7 @@ under the License. <div class="form-row"> <label for="countryGeoId">${uiLabelMap.CommonCountry}* <span id="advice-required-countryGeoId" style="display: none" class="custom-advice">(required)</span></label> <div class="form-field"> - <select name="shipToCountryGeoId" id="countryGeoId" class="required" style="width: 70%"> + <select name="shipToCountryGeoId" id="countryGeoId" class="required"> <#if countryGeoId?exists> <option value="${countryGeoId}">${countryGeoId}</option> </#if> @@ -333,7 +333,7 @@ under the License. <div class="form-row"> <label for="stateProvinceGeoId">${uiLabelMap.PartyState}* <span id="advice-required-stateProvinceGeoId" style="display: none" class="custom-advice">(required)</span></label> <div class="form-field"> - <select name="shipToStateProvinceGeoId" id="stateProvinceGeoId" style="width: 70%"> + <select name="shipToStateProvinceGeoId" id="stateProvinceGeoId"> <#if stateProvinceGeoId?has_content> <option value="${stateProvinceGeoId}">${stateProvinceGeoId}</option> <#else> Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/profile/ManageAddress.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/profile/ManageAddress.ftl?rev=1583917&r1=1583916&r2=1583917&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/profile/ManageAddress.ftl (original) +++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/profile/ManageAddress.ftl Wed Apr 2 07:40:42 2014 @@ -58,7 +58,7 @@ under the License. <label for="countryGeoId">${uiLabelMap.CommonCountry}* <span id="advice-required-countryGeoId" style="display: none" class="errorMessage">(${uiLabelMap.CommonRequired})</span> </label> - <select name="countryGeoId" id="countryGeoId" class="required" style="width: 70%"> + <select name="countryGeoId" id="countryGeoId" class="required"> <#if countryGeoId??> <option value="${countryGeoId}">${countryGeoId}</option> </#if> @@ -69,7 +69,7 @@ under the License. <label for="stateProvinceGeoId">${uiLabelMap.PartyState}* <span id="advice-required-stateProvinceGeoId" style="display: none" class="errorMessage">(${uiLabelMap.CommonRequired})</span> </label> - <select name="stateProvinceGeoId" id="stateProvinceGeoId" style="width: 70%"> + <select name="stateProvinceGeoId" id="stateProvinceGeoId"> <#if stateProvinceGeoId?has_content> <option value="${stateProvinceGeoId}">${stateProvinceGeoId}</option> <#else> |
Free forum by Nabble | Edit this page |