Guest Posted March 14, 2007 Posted March 14, 2007 It took me a while, well a very long while :rolleyes: , but I'm satisfied with it now. http://shop.outlab.net/ The shop is part of my private collection vinyl records/cd's. I decided to start selling a part of it, so I'm very curious about how things will go. At the same time I added a Lyrics and Pictures part in the hope to get more people. I hope you'll like it! Please, all feedback is welcome... Thx, Paul
Guest Posted March 14, 2007 Posted March 14, 2007 nice work overall. with secure pages I get an SSL warning as well as some images in the title show up with http:// like this one http://shop.outlab.net/images/table_background_login.gif The titles on the right navigation column are way too close to the edge. You could allow a bit more spacing. I guss using the table padding for the info boxes. One other difficulty I noticed was I had to scroll up to use the search and top controls. You could add an extra box on the right side or add them at the bottom too.
Guest Posted March 15, 2007 Posted March 15, 2007 thx for the reaction One thing I solved is to not place Google Ads when having secure pages by using <?php if ($request_type == 'NONSSL') { ?> ... google javascript... <?php } ?> ( Google doesn't offer an https version of the AdSense ad code at this time) I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems.
Guest Posted March 15, 2007 Posted March 15, 2007 I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems. Alright, my own fault. I forgot I changed this code myself a while back. It is solved now..
modulate Posted March 15, 2007 Posted March 15, 2007 I really like the site and colours. Well done, great looking site.
Iggy Posted March 15, 2007 Posted March 15, 2007 thx for the reaction One thing I solved is to not place Google Ads when having secure pages by using <?php if ($request_type == 'NONSSL') { ?> ... google javascript... <?php } ?> ( Google doesn't offer an https version of the AdSense ad code at this time) I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems. Actually, they do :) <?php if ( $_SERVER["SERVER_PORT"] == '443' ) { ?> <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct="UA-xxxxx-x"; urchinTracker(); </script> <?php } else { ?> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct="UA-xxxxx-x"; urchinTracker(); </script> <? } ?> Iggy Everything's funny but nothing's a joke...
Iggy Posted March 15, 2007 Posted March 15, 2007 I mean Google Ads, not Analytics :) Doh! :blush: Everything's funny but nothing's a joke...
Guest Posted March 17, 2007 Posted March 17, 2007 The titles on the right navigation column are way too close to the edge. You could allow a bit more spacing. I guss using the table padding for the info boxes. The problem is I don't have access to any Windows browsers at this moment. Just Mac OS X. And browsershots.org seems to serve only Linux temporarily. I wonder if other people think too that titles on the right navigation column are to close to the edge?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.