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.

Is possible to move only the toggle button in Fancybox in an other position?

For example only the toggle size button on the top left corner of a photo.

share|improve this question
what toggle button are you talking about? The close button? – Szymon WygnaƄski Nov 1 '12 at 20:50
toggle size, sorry – berti Nov 1 '12 at 22:00

1 Answer

up vote 2 down vote accepted

If by toggle button you mean the 'x' close button then yes. Just edit the CSS and change where you want it to display.

#fancybox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    ...
}
share|improve this answer
no, sorry. i refer to the button to resize image – berti Nov 1 '12 at 20:59
@berti can you give us a link to your site or some code? – Bot Nov 1 '12 at 21:03

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.