2

I am using blueimp Gallery on my site, but my thumbnails are shown with a white border. The live demo is shown with borderless, what should i change and where? I tried to make thumbnails with the same size as on the demo (86x86px), but doesn't solve my problem. I checked all the css's but didn't found the corresponding class/id.

The live versions gallery (bottom of the page). My layout.

http://theprob.wha.la/sample/ <- Uploaded a simple version of my site here!

Béla Tóth
  • 97
  • 2
  • 2
  • 7

1 Answers1

2

You can add float:left; to a element inside #link1.

#links1 a
{
  float:left;
}

Or use display:inline-block; and don't forget to remove space which is occurred by display:inline-block;

#links1 a
{
  display:inline-block;
  vertical-align:middle;
}
Community
  • 1
  • 1
Alex
  • 7,801
  • 5
  • 29
  • 44