coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: mibgeneral on June 08, 2006, 10:05:15 AM

Title: Double Paragraph to Single
Post by: mibgeneral on June 08, 2006, 10:05:15 AM
Hi again,
I upgraded to 1.4.8 and I can't figure the way to change the main page Category to Single paragraph instead of Double paragraph.
I want it to be like this:

Category

Models
Music
Music Videos
Misc. Photos

Instead of:

Category

Models

Music

Music Videos

Misc. Photos

Thanks so much in advance...
http://www.hinhonline.com/gallery/index.php

Tracy
Title: Re: Double Paragraph to Single
Post by: Dr Preacox on June 08, 2006, 10:32:23 AM
Pretty easy

just edit /themes/theme.php
search the website for the documents about theming
if you cannot find the code within your theme.php you will have to copy it across from /themes/sample/theme.php
Title: Re: Double Paragraph to Single
Post by: Sami on June 08, 2006, 10:33:18 AM
you should edit style.css ({gallery folder}\themes\classic\style.css)
go to line 221~228 and find these .catrow_noalb {
        background: #D1D7DC ;
        color : #000000;
        padding-top: 3px;
        padding-right: 10px;
        padding-bottom: 3px;
        padding-left: 10px;
}

then change the value of padding-top to 0 and also padding-bottom to 0
that's it you are done  ;)
Title: Re: Double Paragraph to Single
Post by: Dr Preacox on June 08, 2006, 10:36:23 AM
Oh wow, theres an easy way, I did mine through my theme.php, wish I had of checked the CSS, I always do the hard way first
Title: Re: Double Paragraph to Single
Post by: mibgeneral on June 09, 2006, 08:39:12 AM
Thanks all very very much... ;)

Best,

Tracy
Title: Re: Double Paragraph to Single
Post by: mibgeneral on June 09, 2006, 10:14:30 AM
Somehow it doesn't work when I changed in .catrow_noalb, but will work on .catrow, but can it be -3px?

Thanks

Tracy

.catrow_noalb {
        background: #D1D7DC ;
        color : #000000;
        padding-top: 3px;
        padding-right: 10px;
        padding-bottom: 3px;
        padding-left: 10px;
}

.catrow {
        background: #EFEFEF ;
        padding-top: 0px;
        padding-right: 10px;
        padding-bottom: 0px;
        padding-left: 10px;
Title: Re: Double Paragraph to Single
Post by: Sami on June 09, 2006, 10:36:01 AM
No, it can't be negative value.
try catrow_noalb too set the top and bottom padding value to '0' , it will make it thinner , if you have not any album on this cat ;)
I'm not sure if it can get smaller than that ...