Jprint Posted December 20, 2012 Share Posted December 20, 2012 Hello. I need advice for a problem I'm having. I've been working on my site with prestashop for months and have yet to run into a problem I couldn't solve. Until now. I have limited understanding of coding so I hope this doesn't become too much of a coding issue. I am using presta version 1.4.9.0 with Prestashop_alt theme. I have set up an item on my site and have purchased the item myself. When I go to the "details" of the purchased item, the address blocks are too small to display the address text correctly. The address text is jumbled in with the other text that should be below it. I have attached two images, the first image, main site.png is a capture of my site with the jumbled text and what I suspect is the bad code, highlighted. The second image (demo site.png) was captured from the Prestashop live demo of the theme I use. Note that the live demo code does not have the _style="height: 0px"_ code. I've noted when I change the 0px to 200px, the address box height DOES change. I would simply change this line to 200px and let it go, but I cannot find this line of code in my actual files. I can only find it through Firebug or inspect element, which does not show me the actual source of this code. Thank you for any help. Link to comment Share on other sites More sharing options...
Jprint Posted December 22, 2012 Author Share Posted December 22, 2012 Anybody? I have continued to work at this problem myself and haven't been able to fix it. Link to comment Share on other sites More sharing options...
simonstkrs Posted January 25, 2013 Share Posted January 25, 2013 Jprint - Hope this answer finds you after a month. This should solve the issue: Around line 83, change: $(this).fadeIn('slow'); to: $(this).fadeIn('slow', 'linear', function(){$('.address').css({height: '200px'});}); Best of luck. Link to comment Share on other sites More sharing options...
Recommended Posts