hi, im using water-drop theme , i already made several changes in the .css style , i also changed the html template a little bit. atm i just want the gallery to be fully "black" , and no white lines are appearing between the tables. any ideas how to remove those white stuff ?
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fwww.gibbat.de%2Fscreen2.gif&hash=8fa7359ee9f0c106013fe10de4690760686083aa)
any ideas ?
mfg
raum
Quote from: raummusik on July 01, 2004, 01:03:08 PM
hi, im using water-drop theme , i already made several changes in the .css style , i also changed the html template a little bit. atm i just want the gallery to be fully "black" , and no white lines are appearing between the tables. any ideas how to remove those white stuff ?
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fwww.gibbat.de%2Fscreen2.gif&hash=8fa7359ee9f0c106013fe10de4690760686083aa)
any ideas ?
mfg
raum
Coming from .maintable in style.css as i'm right. Take a look into the additional theme styleguide wich is in the recent distribuition to learn how to use.
hi, i finally tried via the styleguide. yeah, should be change-able in the .maintable .. but i cannot figure out how . i changed to :
.maintable {
border: none;
background-color: #FFF;
margin-top: 1px;
margin-bottom: 1px;
any ideas , i also wonder about this #FFF ( blue ) background, i cannot see a blue background.
perhaps someone got an idea, ?
btw. this styleguide thingy is quite helpful . i also have to figure out the syntax of the stylesheet css..
mfg
ben
Well, I had some issues and was able to adapt by also adding color to the table in temlate.html as it was not working for me just using the css file.
#FFF is short for #FFFFFF which is white not blue.
Quote from: raummusik on July 01, 2004, 02:44:21 PM
hi, i finally tried via the styleguide. yeah, should be change-able in the .maintable .. but i cannot figure out how . i changed to :
.maintable {
border: none;
background-color: #FFF;
margin-top: 1px;
margin-bottom: 1px;
any ideas , i also wonder about this #FFF ( blue ) background, i cannot see a blue background.
perhaps someone got an idea, ?
btw. this styleguide thingy is quite helpful . i also have to figure out the syntax of the stylesheet css..
mfg
ben
Try to use a css-editor like Topstyle (http://www.bradsoft.com/download/dloadhandler.asp?file=ts3lite.exe) (one out of many others). By the way #FFF is no color, Hexadecimal Color Codes have always 6 digits as #FFFFFF is white and #000000 is black go for some tips here (http://www.december.com/html/spec/color.html).
Example below maintable with black lines. If you have a black background this is perfect. Change the color value to the color you need to match your backgroundcolor and all lines are gone ;). It is even possible to specify no color (remove the line 'background-color:' completley and the lines wil have the same color as the background, thus they are invisible 8).
.maintable {
border: none;
background-color: #000000;
margin-top: 1px;
margin-bottom: 1px;