coppermine-gallery.com/forum

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: Demetria on October 29, 2010, 04:38:04 PM

Title: Filmstrip problem.
Post by: Demetria on October 29, 2010, 04:38:04 PM
Hi there!

I don't know why, but my filmstrip is acting weird. At first everything looks ok, but when I try to navigate through them they go over table. Link to my gallery: http://gregg-sulkin.com/photos/index.php! How should I fix that?

Thank you in advance,
- Krista.
Title: Re: Filmstrip problem.
Post by: ΑndrĂ© on October 29, 2010, 04:45:42 PM
It doesn't happen with the curve theme: http://gregg-sulkin.com/photos/displayimage.php?pid=10&theme=curve - so there's something wrong with your theme. I just had a short look so I cannot say why it happens.
Title: Re: Filmstrip problem.
Post by: Demetria on October 29, 2010, 05:02:23 PM
Well, I had this code in my css:

.thumb {
   padding-right: 10px;
   padding-left: 10px;
}


I removed it and now thumbnails don't go over table, but they still look kind of strange (added attachment for you to see what I mean).
Title: Re: Filmstrip problem.
Post by: Jeff Bailey on October 29, 2010, 08:53:03 PM
add the padding back in

.thumb {
   padding-right: 10px;
   padding-left: 10px;
}


Then remove the inline styling on

<div id="film" style="position: relative; width: 445px; ">
<table class="tape" style="height: 95px; margin-left: -88px; ">


should look like

<div id="film">
<table class="tape">


see if that works for you.