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
what is your theme?
give me a link to download that theme , I will change that and send it back to you.....
Hi, thanks! It's actually just a modified Classic Theme. Do you still need something from me?
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 :)
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!
please send your complete theme az a zip to this thread...
Here you go...
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
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