Blog

Codes, snippets, tips and tricks for web designers using Adobe Business Catalyst, jQuery, CSS3, HTML5 and Respsonsive Design.

21-9-2011

How to change the height of Invoice’s cell to fit longer product names - Business Catalyst

To change the size of product cell on Invoice’s table so they can fit 2 lines of text, just add the below code inside the INVOICE TEMPLATE on "Customize System Emails" <style type="text/css"> .productitemcell{ height:60px; } </style> ..

Read more

21-9-2011

How to disable the Autoresponder for Web Forms – Adobe Business Catalyst

Just add &SAR=False to the form code: <form name="catwebformform47565" method="post" onsubmit="return checkWholeForm47565(this)" enctype="multipart/form-data" action="/FormProcessv2.aspx?WebFormID=12374&amp;OID=4739&amp;OTYPE=55&amp;EID=0&amp;CID=0&amp;SAR=False"> ..

Read more

21-9-2011

How to Force Opt-In automatically instead of having to go into each contacts details – Business Catalyst

just add: &Optin=True at the form action, see example below: <form action="/FormProcessv2.aspx?WebFormID=10090&amp;OID=4739&amp;OTYPE=55&amp;EID=0&amp;CID=0&amp;Optin=True" enctype="multipart/form-data" onsubmit="return checkWholeForm13472(this)" method="post" name="catwebformform13472"></form> ..

Read more