Help - Search - Members - Calendar
Full Version: Table lines in Board and Forum View
Invision Power Services > Community Forums > Community General Chat
dtaresh
The board view on my message board uses white as .row1. This hides the lines that divide one forum from another. You can see what I mean here.

Click to view attachment

How can I control the color of these lines? Is it through the .CSS file or is this a spacer graphic?

Any help will be appreciated.
rct2dotcom
It's CSS, and it it isn't obvious which one.
.Kris
Yes CSS
dtaresh
QUOTE(Kris Guerra @ Jun 23 2005, 06:46 PM) *
Yes CSS


A person on another board said it was this:
CODE
.cleared
{
clear: both;
}

.borderwrap,
.borderwrapm
/* this will affect the outlining border of all the tables and boxes through-out the skin. */
{
background: #FFF;              <-- this variable
border: 1px solid #0A2288;
}

.borderwrapm
{
margin: 5px;
}

.borderwrap h3,
.maintitle,
.maintitlecollapse


All this does is change the outside border. I am looking for what changes the inside border, or the outside border of the .row1 and .row2 styles
.Kris
CODE
.borderwrap,
.borderwrapm
/* this will affect the outlining border of all the tables and boxes through-out the skin. */
{
background: #FFF; <-- this variable
border: 1px solid #0A2288;
}


BG affects the bg(inner borders basically) lol duh tongue.gif
border is what affects the outside
dtaresh
QUOTE(Kris Guerra @ Jun 23 2005, 08:02 PM) *
BG affects the bg(inner borders basically) lol duh tongue.gif
border is what affects the outside


I altered the line to equal the color I wanted with no effect. The screenshot above was made using this CSS snip:

.borderwrap,
.borderwrapm
{
background: #0A2288;
border: 1px solid #0A2288;
padding: 0
margin: 0
}

Found it: w00t.gif

.borderwrap table th a:link,
.subtitle a:link,
.subtitlediv a:link,
.borderwrap table th a:visited,
.subtitle a:visited,
.subtitlediv a:visited,
.borderwrap table th a:active,
.subtitle a:active,
.subtitlediv a:active,
.borderwrap table th a:hover,
.subtitle a:hover,
.subtitlediv a:hover
{
background: #0A2288;
color: #0A2288;
text-decoration: none;
}

Thanks!
.Kris
You should of said text tongue.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.