X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Link on header/logo (https://forum.x-cart.com/showthread.php?t=56425)

gezzam 11-05-2010 11:07 PM

Link on header/logo
 
1 Attachment(s)
Hi All,

I seem to have lost the link on the logo of my site.

Have a look at http://216.144.234.43/shop/

I have made the logo go accross the whole site as a header, however I want to user to go back to home page if they click in any area of the header.

I have changed the code in the head.tpl file to

<div class="line1">
<div class="logo">
<a href="{$catalogs.customer}/home.php"><img src="{$ImagesDir}/top_image.jpg" alt="" /></a>
</div>

And if you use the CSS inspector in forebug, the correct href link is there (see attached)

Any ideas?

amy2203 11-05-2010 11:50 PM

Re: Link on header/logo
 
in my firebug the whole anchor tag is greyed out, and my view source doesn't seem to like the end tag of the image, have yu tried removing this? (the / at the end of the image) I know this isn't right but might just identify the issue,

gezzam 11-06-2010 12:54 AM

Re: Link on header/logo
 
Nope...no go

If this is any help, Ive changed the code on altskin.css to this

#header .line1 .logo {
background: url(images/top_image.jpg) no-repeat right top;
position: absolute;
left: 0px;
top: 20px;
height: 120px;
width: 780px;
margin: 0px;
padding: 0px;
}

gb2world 11-06-2010 11:26 AM

Re: Link on header/logo
 
The image is grayed out in firebug because it is set to not display in your css:
altskin.css (line 794)

#header .line1 .logo img {
display:none;
}

gezzam 11-06-2010 12:58 PM

Re: Link on header/logo
 
Thanks for that....

All fixed...

Gerald

gb2world 11-06-2010 01:26 PM

Re: Link on header/logo
 
You are welcome - but watch out for IE. You link will not extend over the entire image, which I believe was your original requirement. In IE - it is limited because of this:

#header .line1 .logo a img {
height:120px;
width:250px;
}

--


All times are GMT -8. The time now is 11:24 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.