coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: digidiva-kathy on April 08, 2006, 05:16:11 PM

Title: Two little questions :)
Post by: digidiva-kathy on April 08, 2006, 05:16:11 PM
Please look here for the gallery I'm working on:

http://www.classiquedesigns.com/gallery/index.php

I would first like to remove the border from around the outside of the top section which contains the category name.

I would like to center the gallery on the page.

Could someone enlighten me on these things, please?

Thanks!
Kathy
Title: Re: Two little questions :)
Post by: Sami on April 08, 2006, 06:47:54 PM
what is your theme?
give me a link to download that theme , I will change that and send it back to you.....
Title: Re: Two little questions :)
Post by: digidiva-kathy on April 08, 2006, 07:24:52 PM
Hi, thanks!  It's actually just a modified Classic Theme.  Do you still need something from me?
Title: Re: Two little questions :)
Post by: Sami on April 08, 2006, 07:34:53 PM
You should change

.maintable {
        border: 1px solid #0E72A4;
/*        background-color: #FFFFFF;*/
        background-color: #efefef;
        margin-top: 1px;
        margin-bottom: 1px;

to

.maintable {
        border: 0px solid;
/*        background-color: #FFFFFF;*/
        background-color: #efefef;
        margin-top: 1px;
        margin-bottom: 1px;

from theme/costom/style.css
to remove border...
to center your gallery you should add

text-align:center;

to ".body" section of style.css
i hope this work for you :)
Title: Re: Two little questions :)
Post by: digidiva-kathy on April 08, 2006, 08:23:47 PM
Well, the first tip worked, but the second didn't.  I had already added that to the body section of the stylesheet thinking that would do it, but it didn't...any other ideas?

Thanks so much!
Title: Re: Two little questions :)
Post by: Sami on April 08, 2006, 11:08:57 PM
please send your complete theme az a zip to this thread...
Title: Re: Two little questions :)
Post by: digidiva-kathy on April 09, 2006, 01:23:37 AM
Here you go...
Title: Re: Two little questions :)
Post by: Sami on April 09, 2006, 01:59:58 AM
change body section of style.css from

body {
        font-family : Verdana, Arial, Helvetica, sans-serif;
        font-size: 12px;
        background : #FFFFFF;
        width: 900px !important;
        text-align: center;
        color : Black;
        margin: 0px;
}

to

body {
        font-family : Verdana, Arial, Helvetica, sans-serif;
        font-size: 12px;
        background : #FFFFFF;
        width: 100% !important;
        text-align: center;
        color : Black;
        margin: 0px;
}

it will fix & center for you
hope this work
Title: Re: Two little questions :)
Post by: Sami on April 09, 2006, 02:12:02 PM
you could also remove
width: 900px !important;
from style.css/body
and edit template.html and give 900px width to main table.in this way , border of your main table remain near the others and does not get wide....

you can replace your file with mine (check the costum.zip under attachment) to take the last update