highslide graphics question

Permalink
Hi there-
There doesn't seem to be anyone manning the addon support for highslide webalbum, so- the question is where do i go to eliminate the line box graphic around the thumbnails?

Otherwise love the gallery..

Thanks

Eulalia
 
adajad replied on at Permalink Best Answer Reply
adajad
corretje hasn't been active for about three weeks, but is otherwise an active member of the community. Maybe he is not feeling well, or perhaps he is on vacation - who knows.

Anyways, I don't have the addon, but by checking out the demo I found out where you can change the styling of the thumbnails.

If you open up the file 'common.css' located in 'public_html/packages/highslide_web_albums/css' you should see the below:
.highslide {
  background-color:#EEEEEE;
  border:1px solid #CCCCCC;
  float:left;
  margin-bottom:10px;
  margin-right:10px;
  padding:5px;
}


By commenting out (or remove) some lines you will get rid of the border around the thumbnails. Removing only the padding will keep a 1px border around each thumbnail.
.highslide {
  background-color:#EEEEEE;
  /*border:1px solid #CCCCCC;*/
  float:left;
  margin-bottom:10px;
  margin-right:10px;
  /*padding:5px;*/
}


The best option is to override the add-on, or to create a custom template for it, so you won't loose your changes in the next add-on update.
Eulalia replied on at Permalink Reply
Eulalia
thanks for the tweak!