Hello,
It looks much much better now, good work! Logo looks cool, nice colors!
"Shop By Categories Till You Drop" - it looks like it belongs in Logo image as it sounds like the part of your shopping idea. If you don't want to include it into your logo, then put the text under the logo, so it makes logical sense - "First Logo - then - what's this portal about - then - categories - then - recently viewed categories.". Make MAIN categories links more outstanding (different color or bold text or larger text) from recently viewed ones.
Caption "Recently viewed categories with BillGiz:" - make centralized and leave some space for links below, also remove ":" from this caption, it does not look good there.
Everything I said here is only my suggestions, try them on and see if you like it and if not, then you can return to your backups anytime
Well have fun!
Also, for the product links, they are currently redirecting customers to other web sites, so you should be opening links in new windows, so people would stay on your home page for further browsing....
Here is what you do:
1) include this script into your HTML head tag:
Code:
<head>
.............
<script type='text/javascript'>//<![CDATA[
window.onload = function(){
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var a = anchors[i]; if (a.getAttribute("href") && a.getAttribute("rel")=="external"){ a.target = "_blank"; }
}
}
//]]></script>
.............
</head>
Then for your external links, add rel="external" parameter to make links popup in new window.
Code:
<a href="someother web site" rel="external">
Once again, my complements on good work, you're catching idea very quickly !!!
Good luck!