Hi everyone, Please have a look here http://bit.ly/ilFiL9 I just can't seem to centralize the thumbnail for my slideshow. Its always at the left. Does anyone knows how to make it center below the main slideshow? See SS If you fix it I'll buy you a coke
Page not found ... From your screenshot, I would say just wrap your site in a global wrapper that is centralised, then just place your other divs within this wrapper. body { background: #333333; height: 100%; width: 100%; margin: 0px; padding: 0px; } #wrapper { background: #ffffff; width: 900px; height: 100%; padding: 0px 0px 0px 0px; margin: 0px auto 0px; } Code (markup): <body> <div id="wrapper"> <!-- INSERT YOUR OTHER DIVS HERE --> </div> </body> Code (markup): Should work fine.