Login box in Business Casual theme
Hello everyone, Recently some of our users pointed out that our Business Casual theme login box behaves strange in placeholders with width less than 530px. When in editor and putting log-in box in to narrow placeholder it will shrink it's width to placeholder (messing with its template in the process), but after "save changes" button is pressed it comes back to it's set minimum size of 530px (without it it does not look good). This particular problem can be solved with workarounds: 1) To make log-in box look in editor exactly as it will be on public you can add the following code to your site's css customization:.WaGadgetLoginForm{ min-width: 530px !important; } In this case log-in box will not shrink in edit mode and will look exactly as it is designed. 2) If you want log-in box to fit in to placeholder you can add the following code to your site's css customization:.WaGadgetLoginForm{ min-width: inherit; } In this case your log-in box will fit to any placeholder but it can mess with gadget template and appearance. This particular Business theme was made by us long ago and it is still very popular among our customers. Also many of our customers still use it as a base for their customized sites. And it is harder for us to make fixes within this theme as it can mess with our existing users content. In this particular case the amount of customers is really large, and we have only a couple of customers that encountered this problem. That is why we decided to provide workaround to this problem then to fix it and warn our customers about it. Note, that if you do not plan to put login box in narrow placeholders while using Business Casual theme you will not encounter this problem.