coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: santoro on November 21, 2007, 08:18:18 PM

Title: somenthig wrong with oranje theme
Post by: santoro on November 21, 2007, 08:18:18 PM
I like very much this theme, but there is somethig wrong whith rating stars under some displayed photo.
http://santoro.ic.cz/displayimage.php?pos=-2
The rating stars are not dispayed correctly in Firefox (but in Internet Explorer everything seems to be in the right place). See attached file to know what I mean.
Does anybody know what should I do to correct it? Thanks!
Title: Re: somenthig wrong with oranje theme
Post by: santoro on November 25, 2007, 10:50:18 PM
Maybe I should rewrite something with piece of code from another theme (where rating stars are displayed without these problems)? But it looks like theme Oranje has very specific theme.php, so I am completely lost :(
Can somebody give me some answer, please?
Title: Re: somenthig wrong with oranje theme
Post by: Nibbler on November 25, 2007, 11:08:41 PM
You need to add a clearing div after the floating bits.
Title: Re: somenthig wrong with oranje theme
Post by: alanpalan on November 26, 2007, 03:37:58 PM
Thanks. Where exactly? I don't know what floating bits means :)
Title: Re: somenthig wrong with oranje theme
Post by: Stramm on November 26, 2007, 03:43:59 PM
within your theme.php find $template_image_rating, copy it and post it here
Title: Re: somenthig wrong with oranje theme
Post by: alanpalan on November 26, 2007, 05:38:59 PM
Ok, here it is:


// HTML template for the image rating box
$template_image_rating = <<<EOT

        <tr>
                <td>
<div align="justify" class="graybox postmetadata">
<h3 style="margin: 0 0 0;"><span style="float:left">{TITLE}</span></h3> <span style="float:right">{VOTES}</span><br />
<table width="100%"><tr>
                <td width="" align="center"><a href="{RATE0}" title="{RUBBISH}"><img src="themes/oranje/images/rating0.gif" alt="{RUBBISH}" border="0" /><br /></a></td>
                <td width="" align="center"><a href="{RATE1}" title="{POOR}"><img src="themes/oranje/images/rating1.gif" alt="{POOR}" border="0" /><br /></a></td>
                <td width="" align="center"><a href="{RATE2}" title="{FAIR}"><img src="themes/oranje/images/rating2.gif" alt="{FAIR}" border="0" /><br /></a></td>
                <td width="" align="center"><a href="{RATE3}" title="{GOOD}"><img src="themes/oranje/images/rating3.gif" alt="{GOOD}" border="0" /><br /></a></td>
                <td width="" align="center"><a href="{RATE4}" title="{EXCELLENT}"><img src="themes/oranje/images/rating4.gif" alt="{EXCELLENT}" border="0" /><br /></a></td>
                <td width="" align="center"><a href="{RATE5}" title="{GREAT}"><img src="themes/oranje/images/rating5.gif" alt="{GREAT}" border="0" /><br /></a></td>
        </tr></table>
</div>
</td>
</tr>

EOT;