jbutt
VP-CART New User

USA
56 Posts |
Posted - May 18 2017 : 14:31:04
|
Hi Serj,
The gap you notice is caused by two things that can be easily rectified. I had the same issue and realized that white-space affects even the spacing in the html code that isn''t specifically a line break.
In shopprotabs.asp go to line 81. Remove all spacing between the end _padding"> and the followning <%
It should look like this:
<div id="<%=xprotabsconfigsary(icnt)%>" class="tabcontent content_padding"><%
Do the same to line 121. The final result will look like this.
%></div>
Finally, you can delete or comment out the break in line 113. This is what my code looks like. ================================================
<div id="<%=xprotabsconfigsary(icnt)%>" class="tabcontent content_padding"><% case lcase(xprotabsconfigsary(icnt)) case "xalsobought" Handle_ALSOBOUGHT ivalue,parsearray,parseRS htmlwrite "<div class=""addotherbtnwrapper"">"
''800 - 2016.09.07 - Alsobought: If checkbox, then display Add to items button if cdbl(session("alsobought_checkbox_ctr")) > 0 then handle_submitbutton ivalue,parsearray,parseRS end if
htmlwrite "</div>" case "xcrossselling" Handle_CROSSSELLING ivalue,parsearray,parseRS htmlwrite "<div class=""addotherbtnwrapper"">" handle_submitbutton ivalue,parsearray,parseRS htmlwrite "</div>" case "xprocatdisplay" Handle_procatdisplay ivalue,parsearray,parseRS htmlwrite "<div class=""addotherbtnwrapper"">" handle_submitbutton ivalue,parsearray,parseRS htmlwrite "</div>" case "xallowratingproducts" displayreviews case "xtellafriend" displaytellafriendform case "xproductextdesc" ''701 - 2011.04.19 - Enhancement: Speed enhancement fixes fieldvalue = parseRS("extendeddesc")
transvalue=TranslateLanguage(dbc, "products", "extendeddesc","catalogid", parsers("catalogid"), fieldvalue) htmlwrite transvalue
''800 - 2017.03.29 - Integrate with Lipscore case "xallowlipscore" displaylipscoresform parseRS
end select %></div> ==============================
|
 |
|