Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
    <script type='text/javascript' src='jquery.js'></script>
<script type='text/javascript'>
$(document).ready(function(){

$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});

});
</script>
<style>
div.fadehover {
    position: relative;
    }

img.a {
    position: absolute;

        z-index: 10;
    }

img.b {
    position: absolute;

    }
</style>
</head>

<body>

<div class="fadehover" align="center">
<img src="Facebook.png" alt="" class="a" />
<img src="Facebook_hover.png" alt="" class="b" />
</body>

So I have this image fade hover effect on my image and it works fine. BUT i try to postition it where i want because now it is on the top left corner. How can I position the image in the center? or generally where I want? tried with simple center tags but doesnt work. Any ideas?

share|improve this question
Use CSS to position it. – aziz punjani Oct 14 '11 at 21:34

2 Answers

up vote 0 down vote accepted

Put the images inside their own divs inside the .fadehover div and apply the position styling to them and not the images.

Edit: Code is as follows

<script type='text/javascript'>
$(document).ready(function(){
$("div.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});

});
</script>
<style>
div.fadehover {
    position: relative;
}

div.a {
    position: absolute;
    z-index: 10;
}

div.b {
    position: absolute;
}
</style>
<div class="fadehover">
    <div class="a"><img src="yourimage1.ext" /></div>
    <div class="b"><img src="yourimage2.ext" /></div>
</div>
share|improve this answer
can you please write it down? it seems that Im making smthing wrong.. – Andreas Litis Oct 14 '11 at 21:42
See my edited post. – Justin Pearce Oct 14 '11 at 21:49
thanks that works fine with my browser! hope it will be in all browsers that way. I used exactly your code just edited also this one: div.fadehover { position: relative; width: 150px; /* replace with actual width */ margin-left: 45%; margin-right: 50%; margin-top: 20%; } – Andreas Litis Oct 14 '11 at 22:16

To position the image in the center, use:

div.fadehover {
    position: relative;
    width: 200px; /* replace with actual width */
    margin-left: auto;
    margin-right: auto;
}
share|improve this answer
thanx! I used your code also – Andreas Litis Oct 14 '11 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.