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.

I'm currently programming my new web portfolio. So far so good. I decided to make it completely %-based and I'm struggeling with one last detail:

I have to center %-based images vertically in a div box which is also %-based.

Here is the fiddle: http://jsfiddle.net/PX4tF/4/

This is the code that doesn't work like I want it to be:

$(document).ready(function(){

         $(window).resize(function(){

          $('.vertical_center').css({
           position:'relative',
           left: ($(window).width() 
             - $('.vertical_center').outerWidth())/2,
           top: ($(window).height() 
             - $('.vertical_center').outerHeight())/2
          });

         });

         // To initially run the function:
         $(window).resize();

        });

The script I currently use only starts to work correctly when I resize the window. Before that it kind of centers the image but not correctly. Also I have multiple div boxes like the one in fiddle on my page and currently I have to duplicate the script to center it correctly after the browser is resiszed. Is there a way to make that easier?

Here is the link to the beta site: http://www.zeiteffekt.de/relaunch

I'm not that programming guy so I hope you guys can help me with this.

Cheers, Tim

share|improve this question

2 Answers

Try something like this

function alignImage()
{
    $('.vertical_center').css({
        position:'relative',
        left: ($(window).width() - $('.vertical_center').outerWidth())/2,
        top: ($(window).height() - $('.vertical_center').outerHeight())/2
    });
}
$(window).load(function() {
    alignImage();
});
$(window).resize(function() {
    alignImage();
});

Images is not ready when $(document).ready is called. Use load instead

share|improve this answer

Try this:

 $(window).resize(function(){
        $( ".img-swap").each(function() {
            $(this).css({
               position:'relative',
               marginTop: ($(this).parent().outerHeight() 
                - ($(this).outerHeight()+15))/2
             });
         });
});

jsfiddle
I replace marginTop instead of top Because marginTop will help to push the text just below the image while top push image only.

share|improve this answer
does this also work before resizing the window like in the example of @TommySorensen? If yes it's perfect. – Tim Brack Jan 9 at 16:00
Yes, that what $(window).resize() do. – vusan Jan 10 at 4:17

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.