I've been looking to have our store logo be click able so it takes our customers back to our home page. I've been unable to find the image in the Frame.html templat or in the .css file. I'm hoping that someone will be able to provide some light onto this matter. Thanks for your time.
Announcement
Collapse
No announcement yet.
Clickable Store Logo
Collapse
X
-
Clickable Store Logo
Tags: None
-
You can accomplish this on the frame.html
find the div tag:
Code:<div id="logo">
Code:<a href="home.asp"> ... </a>
Code:<div style="padding: 0px 0px 0px 30px;">
Sample Code will look like this:
Code:<div id="logo"> <a href="home.asp"> <div style="padding: 0px 0px 0px 30px;"> <!--START: global_header--> <span class="store-name">[storename]</span><br> <span class="store-slogan">[storeslogan]</span> <!--END: global_header--> </div> </a> </div>
Comment
-
ElegantWeddings,
Unfortunately, the code that you told me to look for wasn't there and when I tried adding the information it messed with the tables. So, what I did instead was the following:
Code:<td><a href="home.asp"><!--START: global_header--> <span class="store-name">[storename]</span><br> <span class="store-slogan">[storeslogan]</span> <!--END: global_header--></a></td><
Comment
-
Another way to make your logo a link (more so for those who don't want to fool with the template code):
In Design/Header & Footer go to Global Header area and enable it with a checkmark. Switch the input area to WYSIWYG and insert logo (insert image icon). Next make it a link (hyperlink button) by filling in the source section. Select "http://" from the drop-down box and put in your homepage url ("mywebsite.com"). That's it!
Comment
-
Originally posted by Barry View PostAnother way to make your logo a link (more so for those who don't want to fool with the template code):
In Design/Header & Footer go to Global Header area and enable it with a checkmark. Switch the input area to WYSIWYG and insert logo (insert image icon). Next make it a link (hyperlink button) by filling in the source section. Select "http://" from the drop-down box and put in your homepage url ("mywebsite.com"). That's it!
Comment
Comment