Background Pictures

P

Poland

Hello,

Is there a way to make a background picture, such as the ones in the
Cell Properties, a hyperlink to another web page or will the background
picture need to be replaced by the actual picture?
 
T

Tom [Pepper] Willett

It's possible with (x)html and css, no Javascript:

html:
<div><a href="#" title="#"><span></span>link text</a></div>

css:
#logo {
/* size of the picture */
width:
height:
}
#logo a, #logo a:hover {
background:none;
color: /*color of the background or:*/
text-indent: -2000px;
}
#logo span {
background: url(../pics/logo.gif) no-repeat;
/* size of the picture */
width:160px;
height:65px;
z-index:1000;
}

-- Tom [Pepper] WillettMicrosoft MVP - FrontPageFrontPage Support:
http://www.frontpagemvps.com/----------"Poland"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top