I have a request... I use Visual Web Developer so I can't compile the project.  Is there anyone that is willing to make a small change to productattributes.ascx.cs, recompile and then share the nopCommerceStore.dll with me?  I just want to add a break before attributes that use a text box like below or just skip the switch all together and leave addBreak = true.  Thanks,


                        bool addBreak = true;
                        switch (attribute.AttributeControlType)
                        {
                            case AttributeControlTypeEnum.TextBox:
                                {
                                    addBreak = true;
                                }
                                break;
                            default:
                                break;
                        }