Background Pictures

  • Thread starter Thread starter Poland
  • Start date Start date
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?
 
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"
 
Back
Top