-
rollover image missing and other have multiples
I have drawn and sliced a web page in photoshop then put in the rollovers and optimized in imageready. When I save optomized mulitple images are being created of some of the slices, and there is no image at all for one of the rollovers. I have gone back and check the rollover several times. As far as I can tell the over state is correct for the slice and the effect is on the right layer. Any help?
-
-
Re: rollover image missing and other have multiples
Check source location again, if you move the file from your desktop or drive to a new file/folder it may not locate them.
I work with dreamweaver and use the roll-over feature using jpegs.
-
-
Re: rollover image missing and other have multiples
I suggest you do not use the rollover created by these applications, just by using CSS, it's more easy and you get more control, for example:
in yout html page, before the </head> tag copy this css code:
<style type="text/css">
.button a{
display:block;
width:160px; /* a width size of the button images */
height:40px; /* a height size of the button images */
}
.button a:link{
background:url(images/button-link.png) no-repeat left top;
}
.button a:hover{
background:url(images/button-roll.png) no-repeat left top;
}
/* This hides the text of the link */
.button span{
display:none;
}
</style>
in hte body :
<div class="button"><a href="#"><span>link</span></a></div>
This is a simple code but it's work fine.
by
-
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
Powered by
vBulletin® Version 4.1.9
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
Content Relevant URLs by
vBSEO 3.6.0
Copyright 2011 Photoshop Gurus Forum. All rights reserved.