how to remove the white borders / lines from the tables how to remove the white borders / lines from the tables
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

how to remove the white borders / lines from the tables

Started by raummusik, July 01, 2004, 01:03:08 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

raummusik

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

DaMysterious

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.
DaMysterious.

raummusik

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

jamieb

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.


DaMysterious

#4
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 (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.


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;
DaMysterious.