Hi, maybe someone out there can help. I really know very little about Drupal, much less about code. I had a template built by someone who I can't get in touch with anymore. The problem I'm having right now is that whenever I create a table, even if I put 0 for border in the properties, there is still always a grey line between every row. I cannot find how to remove this. I searched alot on this issue and found people mostly complaining about this grey line just at the top of the table. People are saying it is a default attribute written in either the file system.css or style.css. I have tried the following suggestions of editing those lines but nothing has worked. Anyone have any idea here ? Here's a sample page where you can see the grey lines between each row of the table:

http://www.wholelifeplaza.com/performance/rejuvination

and here's the things I've tried and my comments: below I'm posting those 2 files system.css and style.css as it seems to be where the issue is. Aslo, I don't know what version of Drupal I have, I tried to find that out too and could not find any simple way to determine that. I do know that the theme is Amity Island (under site building/themes Amity Island is enabled: so this is the style sheet which I have tried to edit, and have included below. Thanks for any help anyone.

Mike

-----------------------------------------------------------------------------------
(I tried this)

Just add the following code to your themes style.css

tbody {
border-top: 0;
}
------------------------------------------------------------------------------------
(this one I could not find any default.css file at all)

I found it. It's in the default.css file on line 21. Here is the offending code:

table {
border-collapse:collapse;
}

Just comment this out, and the line goes away...
-------------------------------------------------------------------------------------
(this one I tried too. I think I did this with both the style.cc and system.css files. You'll still those lines there,
I even tried instead of zero for the value, I put 'none'. Just trying anything and pretty much shooting in the dark as I know nothing about code)

The border comes from the system.css style sheet, located in /modules/system/system.css, where the following styles are set:

tr.even, tr.odd {
background-color: #eee;
border-bottom: 1px solid #ccc;
padding: 0.1em 0.6em;
}
td.active {
background-color: #ddd;
}
tbody {
border-top: 1px solid #ccc;
}
tbody th {
border-bottom: 1px solid #ccc;
}
thead th {
text-align: left;
padding-right: 1em;
border-bottom: 3px solid #ccc;
}

To override these borders, background colors etc just copy the above styles into your themes style sheet (style.css) and make the appropriate changes to each style i.e. border-bottom: 0; !!!!
---------------------------------------------------------------------------------------------------

system.css
ASCII C program text
--------------------------------------------------------------------------------

/* $Id: system.css,v 1.48 2008/01/09 09:56:39 goba Exp $ */

/*
** HTML elements
*/
body.drag {
cursor: move;
}
th.active img {
display: inline;
}
tr.even, tr.odd {
background-color: #eee;
border-bottom: none;
padding: 0.1em 0.6em;
}
tr.drag {
background-color: #fffff0;
}
tr.drag-previous {
background-color: #ffd;
}
td.active {
background-color: #ddd;
}
td.checkbox, th.checkbox {
text-align: center;
}
tbody {
border-top:none;
}
tbody th {
border-bottom: none;
}
thead th {
text-align: left; /* LTR */
padding-right: 1em; /* LTR */
border-bottom: none;
}

/*
** Other common styles
*/
.breadcrumb {
padding-bottom: .5em
}
div.indentation {
width: 20px;
height: 1.7em;
margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
padding: 0.42em 0 0.42em 0.6em; /* LTR */
float: left; /* LTR */
}
div.tree-child {
background: url(../../misc/tree.png) no-repeat 11px center; /* LTR */
}
div.tree-child-last {
background: url(../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
}
div.tree-child-horizontal {
background: url(../../misc/tree.png) no-repeat -11px center;
}
.error {
color: #e55;
}
div.error {
border: 1px solid #d77;
}
div.error, tr.error {
background: #fcc;
color: #200;
padding: 2px;
}
.warning {
color: #e09010;
}
div.warning {
border: 1px solid #f0c020;
}
div.warning, tr.warning {
background: #ffd;
color: #220;
padding: 2px;
}
.ok {
color: #008000;
}
div.ok {
border: 1px solid #00aa00;
}
div.ok, tr.ok {
background: #dfd;
color: #020;
padding: 2px;
}
.item-list .icon {
color: #555;
float: right; /* LTR */
padding-left: 0.25em; /* LTR */
clear: right; /* LTR */
}
.item-list .title {
font-weight: bold;
}
.item-list ul {
margin: 0 0 0.75em 0;
padding: 0;
}
.item-list ul li {
margin: 0 0 0.25em 1.5em; /* LTR */
padding: 0;
list-style: disc;
}
ol.task-list li.active {
font-weight: bold;
}
.form-item {
margin-top: 1em;
margin-bottom: 1em;
}
tr.odd .form-item, tr.even .form-item {
margin-top: 0;
margin-bottom: 0;
white-space: nowrap;
}
tr.merge-down, tr.merge-down td, tr.merge-down th {
border-bottom-width: 0 !important;
}
tr.merge-up, tr.merge-up td, tr.merge-up th {
border-top-width: 0 !important;
}
.form-item input.error, .form-item textarea.error, .form-item select.error {
border: 2px solid red;
}
.form-item .description {
font-size: 0.85em;
}
.form-item label {
display: block;
font-weight: bold;
}
.form-item label.option {
display: inline;
font-weight: normal;
}
.form-checkboxes, .form-radios {
margin: 1em 0;
}
.form-checkboxes .form-item, .form-radios .form-item {
margin-top: 0.4em;
margin-bottom: 0.4em;
}
.marker, .form-required {
color: #f00;
}
.more-link {
text-align: right; /* LTR */
}
.more-help-link {
font-size: 0.85em;
text-align: right; /* LTR */
}
.nowrap {
white-space: nowrap;
}
.item-list .pager {
clear: both;
text-align: center;
}
.item-list .pager li {
background-image:none;
display:inline;
list-style-type:none;
padding: 0.5em;
}
.pager-current {
font-weight:bold;
}
.tips {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
font-size: 0.9em;
}
dl.multiselect dd.b, dl.multiselect dd.b .form-item, dl.multiselect dd.b select {
font-family: inherit;
font-size: inherit;
width: 14em;
}
dl.multiselect dd.a, dl.multiselect dd.a .form-item {
width: 8em;
}
dl.multiselect dt, dl.multiselect dd {
float: left; /* LTR */
line-height: 1.75em;
padding: 0;
margin: 0 1em 0 0; /* LTR */
}
dl.multiselect .form-item {
height: 1.75em;
margin: 0;
}

/*
** Inline items (need to override above)
*/
.container-inline div, .container-inline label {
display: inline;
}

/*
** Tab navigation
*/
ul.primary {
border-collapse: collapse;
padding: 0 0 0 1em; /* LTR */
white-space: nowrap;
list-style: none;
margin: 5px;
height: auto;
line-height: normal;
border-bottom: 1px solid #bbb;
}
ul.primary li {
display: inline;
}
ul.primary li a {
background-color: #ddd;
border-color: #bbb;
border-width: 1px;
border-style: solid solid none solid;
height: auto;
margin-right: 0.5em; /* LTR */
padding: 0 1em;
text-decoration: none;
}
ul.primary li.active a {
background-color: #fff;
border: 1px solid #bbb;
border-bottom: #fff 1px solid;
}
ul.primary li a:hover {
background-color: #eee;
border-color: #ccc;
border-bottom-color: #eee;
}
ul.secondary {
border-bottom: 1px solid #bbb;
padding: 0.5em 1em;
margin: 5px;
}
ul.secondary li {
display: inline;
padding: 0 1em;
border-right: 1px solid #ccc; /* LTR */
}
ul.secondary a {
padding: 0;
text-decoration: none;
}
ul.secondary a.active {
border-bottom: 4px solid #999;
}

/*
** Autocomplete styles
*/
/* Suggestion list */
#autocomplete {
position: absolute;
border: 1px solid;
overflow: hidden;
z-index: 100;
}
#autocomplete ul {
margin: 0;
padding: 0;
list-style: none;
}
#autocomplete li {
background: #fff;
color: #000;
white-space: pre;
cursor: default;
}
#autocomplete li.selected {
background: #0072b9;
color: #fff;
}
/* Animated throbber */
html.js input.form-autocomplete {
background-image: url(../../misc/throbber.gif);
background-repeat: no-repeat;
background-position: 100% 2px; /* LTR */
}
html.js input.throbbing {
background-position: 100% -18px; /* LTR */
}

/*
** Collapsing fieldsets
*/
html.js fieldset.collapsed {
border-bottom-width: 0;
border-left-width: 0;
border-right-width: 0;
margin-bottom: 0;
height: 1em;
}
html.js fieldset.collapsed * {
display: none;
}
html.js fieldset.collapsed legend {
display: block;
}
html.js fieldset.collapsible legend a {
padding-left: 15px; /* LTR */
background: url(../../misc/menu-expanded.png) 5px 75% no-repeat; /* LTR */
}
html.js fieldset.collapsed legend a {
background-image: url(../../misc/menu-collapsed.png); /* LTR */
background-position: 5px 50%; /* LTR */
}
/* Note: IE-only fix due to '* html' (breaks Konqueror otherwise). */
* html.js fieldset.collapsed legend,
* html.js fieldset.collapsed legend *,
* html.js fieldset.collapsed table * {
display: inline;
}
/* For Safari 2 to prevent collapsible fieldsets containing tables from dissapearing due to tableheader.js. */
html.js fieldset.collapsible {
position: relative;
}
html.js fieldset.collapsible legend a {
display: block;
}
/* Avoid jumping around due to margins collapsing into collapsible fieldset border */
html.js fieldset.collapsible .fieldset-wrapper {
overflow: auto;
}

/*
** Resizable text areas
*/
.resizable-textarea {
width: 95%;
}
.resizable-textarea .grippie {
height: 9px;
overflow: hidden;
background: #eee url(../../misc/grippie.png) no-repeat center 2px;
border: 1px solid #ddd;
border-top-width: 0;
cursor: s-resize;
}
html.js .resizable-textarea textarea {
margin-bottom: 0;
width: 100%;
display: block;
}

/*
** Table drag and drop.
*/
.draggable a.tabledrag-handle {
cursor: move;
float: left; /* LTR */
height: 1.7em;
margin: -0.4em 0 -0.4em -0.5em; /* LTR */
padding: 0.42em 1.5em 0.42em 0.5em; /* LTR */
text-decoration: none;
}
a.tabledrag-handle:hover {
text-decoration: none;
}
a.tabledrag-handle .handle {
margin-top: 4px;
height: 13px;
width: 13px;
background: url(../../misc/draggable.png) no-repeat 0 0;
}
a.tabledrag-handle-hover .handle {
background-position: 0 -20px;
}

/*
** Teaser splitter
*/
.joined + .grippie {
height: 5px;
background-position: center 1px;
margin-bottom: -2px;
}
/* Keeps inner content contained in Opera 9. */
.teaser-checkbox {
padding-top: 1px;
}
div.teaser-button-wrapper {
float: right; /* LTR */
padding-right: 5%; /* LTR */
margin: 0;
}
.teaser-checkbox div.form-item {
float: right; /* LTR */
margin: 0 5% 0 0; /* LTR */
padding: 0;
}
textarea.teaser {
display: none;
}
html.js .no-js {
display: none;
}

/*
** Progressbar styles
*/
.progress {
font-weight: bold;
}
.progress .bar {
background: #fff url(../../misc/progress.gif);
border: 1px solid #00375a;
height: 1.5em;
margin: 0 0.2em;
}
.progress .filled {
background: #0072b9;
height: 1em;
border-bottom: 0.5em solid #004a73;
width: 0%;
}
.progress .percentage {
float: right; /* LTR */
}
.progress-disabled {
float: left; /* LTR */
}
.ahah-progress {
float: left; /* LTR */
}
.ahah-progress .throbber {
width: 15px;
height: 15px;
margin: 2px;
background: transparent url(../../misc/throbber.gif) no-repeat 0px -18px;
float: left; /* LTR */
}
tr .ahah-progress .throbber {
margin: 0 2px;
}
.ahah-progress-bar {
width: 16em;
}

/*
** Formatting for welcome page
*/
#first-time strong {
display: block;
padding: 1.5em 0 .5em;
}

/*
** To be used with tableselect.js
*/
tr.selected td {
background: #ffc;
}

/*
** Floating header for tableheader.js
*/
table.sticky-header {
margin-top: 0;
background: #fff;
}

/*
** Installation clean URLs
*/
#clean-url.install {
display: none;
}

/*
** For anything you want to hide on page load when JS is enabled, so
** that you can use the JS to control visibility and avoid flicker.
*/
html.js .js-hide {
display: none;
}

/*
** Styles for the system modules page (admin/build/modules)
*/
#system-modules div.incompatible {
font-weight: bold;
}

/*
** Styles for the system themes page (admin/build/themes)
*/
#system-themes-form div.incompatible {
font-weight: bold;
}

/*
** Password strength indicator
*/
span.password-strength {
visibility: hidden;
}
input.password-field {
margin-right: 10px; /* LTR */
}
div.password-description {
padding: 0 2px;
margin: 4px 0 0 0;
font-size: 0.85em;
max-width: 500px;
}
div.password-description ul {
margin-bottom: 0;
}
.password-parent {
margin: 0 0 0 0;
}
/*
** Password confirmation checker
*/
input.password-confirm {
margin-right: 10px; /* LTR */
}
.confirm-parent {
margin: 5px 0 0 0;
}
span.password-confirm {
visibility: hidden;
}
span.password-confirm span {
font-weight: normal;
}

-------------------------------------------------------

style.css
ASCII C program text
--------------------------------------------------------------------------------

/* Default CSS */
/* Base Styles */

body {
padding: 0;
margin-top: 10px;
width : 790px;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
text-align: center;
/*line-height: 1.5em;*/
color: #2f3746;
/* background: #f2f9fe url(images/main.bg.png) repeat-x top;*/
margin:0 auto;
}

tr.even, tr.odd {
background-color: #eee;
border-bottom: none;
padding: 0.1em 0.6em;
}
td.active {
background-color: #ddd;
}
tbody {
border-top: none;
}
tbody th {
border-bottom: none;
}
thead th {
text-align: left;
padding-right: 1em;
border-bottom: none;
}

a, a:visited, a:active {
color: #2d3644;
/*font-weight: bold;*/
text-decoration: none;
}

a:hover {
color: #5493ff;
text-decoration: underline;
}

/* Main Layout */

#wrapper {
margin: 0 auto;
width : 790px;
/* border: 1px solid #94a4ac;*/
background: #ffffff;
}

#page-wrapper {
padding: 0;
margin: 10px auto;
/*width : 790px;*/
width : 790px;
text-align: left;
background: #ffffff;
/* width : 980px;*/
}

#middle-wrapper {
border:1px solid #4F924F;
}

body.sidebars #middle-wrapper {
/* background: url(images/sidebar-bg.png) repeat-y;*/
}

body.sidebar-left #middle-wrapper {
/* important */
background: url(images/bg_green.jpg) repeat-y left;
}

body.sidebar-right #middle-wrapper {
/* background: url(images/sidebar-bg-right.png) repeat-y right;*/
}

#main-content {
float: left;
width: 100%;
}

#squeeze {
}

#main-content-inner {
/* padding: 10px 20px;*/
padding-top:10px;

margin: 0;
border:0px solid green;
padding-left:2px;
}

#middle-wrapper .sidebar-right {
float: left;
z-index: 1;
position: relative;
}

#middle-wrapper .sidebar-left {
float: left;
z-index: 1;
position: relative;
}

body.sidebars #main-content {
margin-left: -200px;
margin-right: -200px;
}

body.sidebar-left #main-content {
margin-left: -200px;
}

body.sidebar-right #main-content {
margin-right: -200px;
}

body.sidebars #squeeze {
margin: 0 200px 0 200px;
}

body.sidebar-left #squeeze {
margin-left: 200px;
}

body.sidebar-right #squeeze {
margin-right: 200px;
}

#middle-wrapper .sidebar-left {
/*width: 200px;*/
width:157px;
/*border-right:1px solid green;*/
}

#middle-wrapper .sidebar-right {
width: 200px;
}

.sidebox-left h3, .sidebox-right h3 {
padding: 0 5px;
margin: 0;
font-size: 1.0em;
font-weight: bold;
line-height: 34px;
background: url(images/sidebox-h3.png) no-repeat;
}

.sidebox-left, .sidebox-right {
/*padding: 18px 18px 0 18px;*/
width: 155px;
}

.sidebox-content {
margin: 0;
/* padding: 5px 0px;*/
}

#topboxes {
padding: 0;
margin: 0;
background: #c3d9ff url(images/bb-bg.png) repeat-x top;
}

#topboxes a {
font-weight: bold;
}

#topboxes a:hover {
color: #ffffff;
}

#bottomboxes {
padding: 0;
margin: 0;
color: #ffffff;
background: #111318;
}

#bottomboxes a {
color: #cbdeff;
font-weight: bold;
}

.userbox, .userbox-bottom {
float: left;
}

.userbox-inner {
padding: 20px;
}

.userbox-bottom-inner {
padding: 20px;
background: #111318;
}

.width25 {width: 25%;}
.width33 {width: 33.3333%;}
.width50 {width: 50%;}
.width100 {width:100%;}

#footer {
/* padding: 10px;*/
margin: 0;
clear: both;
text-align: center;
background: #297E29;
height:21px;
}

/* Header */

#header-wrapper {
border:0px solid red;
/* height: 100px;*/
/*background: url(images/header-bg.png) no-repeat;*/
/* height:147px;*/

}

#site-logo {
padding: 12px 0 0 0;
height: 77px;
float: left;
border: 0;
border:0px solid blue;
}

#site-name {
padding: 17px 0 0 10px;
margin: 0;
float: left;
text-align: right;
}

#site-name a {
font-size: 54px;
font-weight:900;
line-height: 54px;
color: #ff6c00;
text-decoration: none;
}

.site-slogan-logo h2 {
margin-top: -20px;
padding: 0;
font-size: 12px;
line-height: 12px;
text-align: right;
}

.site-slogan h2 {
margin-top: 0;
padding: 0;
font-size: 12px;
line-height: 12px;
text-align: right;
}

#search-box {
float: right;
padding: 40px 20px 0 0;
}

/* Side Menu */

.sidebox-content ul.menu, .sidebox-content ul.menu li {
position: relative;
margin: 0;
padding: 0;
list-style-image: none;
list-style: none;
list-style-type: none;
}

.sidebox-content ul.menu li {
padding: 0;
margin-left: 0;
background: url(images/li-bg.png) repeat-x bottom;
}

.sidebox-content ul.menu li a {
display: block;
padding: 5px 5px 5px 2px;
font-weight: bold;
}

.sidebox-content ul.menu li a:hover {
color: #ffffff;
font-weight: bold;
background: #303948 url(images/primary-bg.png) repeat-x;
text-decoration:none;
}

.sidebox-content ul.menu li a {
font-weight: bold;
}

.sidebox-content ul.menu li ul {
margin: 0;
padding: 0;
list-style: none;
}

.sidebox-content ul.menu li ul li {
margin: 0;
margin-left: 10px;
padding: 0;
list-style: none;
background: url();
}

.sidebox-content ul.menu li ul li a {
font-weight: normal;
}

.sidebox-content ul.menu li ul li a.active {
color: #2f3746;
font-weight: bold;
}

.sidebox-content ul.menu li ul li a.active:hover {
color: #ffffff;
font-weight: bold;
}

/* Misc Elements */

.item-list {
color: #999999;
}

.item-list ul {
padding: 10px 0;
margin: 0;
}

.item-list ul li {
padding: 0 0 5px 5px;
margin: 0;
list-style:none;
font-size: 0.9em;
}

.item-list ul li a {
font-size: 1.0em;
font-weight: bold;
}

.sidebox-content .item-list ul {
padding: 10px 0;
margin: 0;
}

.submitted {
font-size: 0.8em;
color:#999999;
}

.title, .node-title {
padding: 0;
margin: 0;
font-size: 2.0em;
line-height: 1.5em;
font-weight: bold;
}

.title a {
text-decoration: none;
}

.node {
padding-bottom: 10px;
margin-bottom: 10px;
/* border-bottom: 1px dashed #a9c9ff;*/
background: url(images/node-bg.png) repeat-x bottom;
}

.breadcrumb {
float: left;
font-weight: bold;
}

.block-region {
padding: 10px;
border: 2px dashed #333333;
background:#FFFFFF;
}

.links {
clear: both;
font-size: 1.0em;
font-weight: bold;
}

.more-link a {
padding: 0 2px;
font-weight: bold;
border: 1px solid #2d3644;
background: #c0d7fd;
}

#search-block-form {
width: 100%;
text-align: center;
}

.indented {
margin-left: 30px;
}

/* Comments */

#comments {
}

#comments .submitted {
color: #2d3644;
}

.comment {
padding: 10px;
margin-bottom: 10px;
color: #363636;
border: 1px solid #a1acc0;
background: #dfebff;
}

.indented .comment {
background: #fffbcf;
}

.indented .subject a {
color: #999999;
}

/* Aggregator */

.feed-url {
padding: 10px 0;
font-size: 0.8em;
}

.feed-updated {
padding: 0 0 10px 0;
font-size: 0.8em;
}

.feed-item-date {
font-size: 0.8em;
color:#999999;
}

.feed-item-body a {
font-weight: bold;
}

/* Poll */

.poll {
padding: 5px 0;
}

.poll .bar {
height: 1.0em;
background: url(images/poll-bar.png) repeat-x;
}

.poll .bar .foreground {
height: 1.0em;
background: url(images/poll-foreground.png) repeat-x;
}

.sidebox-content .poll .title {
font-size: 1.0em;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}

/* Primary Links */

#primary-links h2 {
display:none;
}

#primary-links {
height:15px;
border:0px solid red;
margin-top:6px;
width:790px;
}

#primary-links, #primary-links ul {
padding: 0;
margin: 0;
/* line-height: 30px;*/
list-style: none;
/* background: url(images/primary-bg.png) repeat-x;*/
background:#297E29;

margin-top:5px;
}

#primary-links a {
display: block;
margin: 0;
/* padding: 0 11px 0 0;*/
font-weight: bold;
font-size: 9px;
color: #ffffff;
text-decoration: none;
/*background: url(images/primary-r.png) right top no-repeat;*/
/*padding-left:36px;*/
padding-left:35px;
padding-right:35px;
text-transform:uppercase;
padding-top:2px;
/*margin-left:42px;
margin-right:37px;*/
}

#primary-links li {
float: left;
list-style: none;

margin: 0;

height:15px;
border:0px solid red;
/* padding: 0 0 0 11px;*/
background: url(images/menu_sep.jpg) 0px 3px no-repeat;
margin-top:2px;

}
#primary-links li.first {

background:none;

}
#primary-links li:hover a {
color: #ffffff;
/* background: url(images/primary-hover-r.png) right top no-repeat;*/

}

#primary-links li:hover {
/* background: url(images/primary-hover-l.png) left top no-repeat;*/
}

#primary-links li:hover li a, #primary-links li:hover li {
color: #ffffff;
background: #aebfd8;
}

#primary-links li ul {
margin-left: -10px;
position: absolute;
width: 210px;
left: -999em;
border: 3px solid #d9dbde;
background: #aebfd8;
z-index: 100;
}

#primary-links li:hover ul, #primary-links li.sfhover ul {
left: auto;
}

#primary-links li ul li a, #primary-links li ul li {
padding: 0 0 0 5px;
margin: 0;
width: 200px;
background: #aebfd8;
}

#primary-links li ul li a:hover, #primary-links li ul li:hover {
color: #ffffff;
background: #3b475a;
}

#primary-links li:hover ul ul, #primary-links li.sfhover ul ul {
left: -999em;
}

/* Secondary Links */

#secondary-links h2 {
display:none;
}

#secondary-links {
background: #d9dbde url(images/secondary-bg.png) top repeat-x;
}

#secondary-links {
padding: 0;
margin: 0;
line-height: 30px;
}

#secondary-links a {
display: block;
margin:0;
padding: 0 15px 0 0;
font-size: 11px;
}

#secondary-links li {
float: left;
margin:0;
padding: 0 0 0 0;
list-style: none;
}

#secondary-links li:hover a {
color: #303a49;
}
/*Vinu*/
#top-menu
{
margin:0px;
padding:0px;
/*height:15px;*/
/*width:272px;*/
width:296px;
}
#wrapper #page-wrapper #header-wrapper #top-menu #block-menu-menu-top-menu h2
{
display:none;
}
#top-menu #block-menu-menu-top-menu .content ul.menu li
{
display:inline;
margin:0px;
padding-right:6px;
padding-left:9px;
/*border-right:1px solid #4F924F;*/
background:url('images/SEP.jpg') 0px 2px no-repeat;
padding-bottom:0px;
margin-top:0px;
padding-top:0px;
}
#top-menu #block-menu-menu-top-menu .content ul.menu li.first
{

background:none;

}
#top-menu #block-menu-menu-top-menu .content ul
{
padding:0px;
/*border:1px solid #4F924F;*/
border-top:1px solid #4F924F;
border-left:1px solid #4F924F;
border-right:1px solid #4F924F;
/*height:17px;*/
height:13px;
margin-top:24px;
/*height:15px;*/
line-height:11px;
}
#top-menu #block-menu-menu-top-menu .content ul.menu li.last
{

border:none;
}
#top-menu #block-menu-menu-top-menu .content ul.menu li a
{
text-transform:uppercase;
font-size:7pt;
font-family:arial;
color:#6C6D6F;
font-weight:normal;
text-decoration:none;
}
#top-border
{
border:1px solid #2A7E29;
/*height:127px;*/
height:124px;
}
#primary-links ul {
padding: 0;
margin: 0;
/* line-height: 30px;*/
/*margin-top:07px;
margin-left:10px;*/
/* border:1px solid red;
height:14px;
margin-left:30px;
width:725px;*/
}
#primary-links ul li.leaf {
padding: 0;
margin: 0;
}

#top-right1 .content ul.menu li
{
border:0px solid red;
display:inline;
height:120px;
width:65px;
float:left;
border-left:1px dotted gray;
}
#top-right1 .content ul.menu li.first
{
border:0px solid red;
display:inline;
height:120px;
width:98px;
float:left;
border-left:1px dotted gray;
}
#top-right1 #block-menu-menu-sprite-menu h2
{
display:none;
}
#header-wrapper #top-border #top-right1 .content ul.menu li a.menu-260
{
padding-bottom:135px;
padding-top:0px;
text-align:left;
padding-left:30px;
color:#297F28;
text-decoration:none;
}
#header-wrapper #top-border #top-right1 .content ul.menu li a.menu-259
{
padding-bottom:135px;
padding-top:0px;
text-align:left;
padding-left:14px;
color:#297F28;
text-decoration:none;
}
#header-wrapper #top-border #top-right1 .content ul.menu li a.menu-257
{
padding-bottom:135px;
padding-top:0px;
text-align:left;
padding-left:73px;
color:#297F28;
text-decoration:none;
}
#header-wrapper #top-border #top-right1 .content ul.menu li a.menu-258
{
padding-bottom:135px;
padding-top:0px;
text-align:left;
padding-left:45px;
color:#297F28;
text-decoration:none;
}
#top-right1
{
float:right;
/*width:360px;*/
width:360px;
border:0px solid red;
}
#header-wrapper #top-border #top-right1 #block-menu-menu-sprite-menu
{
margin:0px;
padding:0px;
}
#wrapper #page-wrapper #middle-wrapper .sidebar-left .sidebox-left h3
{
display:none;
}
#middle-wrapper .sidebar-left .sidebox-left .sidebox-content ul.menu li a:hover
{
background:none;
color:#7A7981;
}
#middle-wrapper .sidebar-left .sidebox-left .sidebox-content ul.menu li a.menu-270:hover
{
background:none;
color:#7A7981;
}

#middle-wrapper .sidebar-left .sidebox-left .sidebox-content ul.menu li
{
background:url('images/leftmenu_sep.jpg') no-repeat;
height:18px;
}
#middle-wrapper .sidebar-left .sidebox-left .sidebox-content ul.menu li.last
{
background:url('images/leftmenu_sep.jpg') no-repeat;

}
#middle-wrapper .sidebar-left .sidebox-left .sidebox-content ul.menu li a
{
font-weight:bold;
font-size:11px;
/*color:#39393A;*/
color:#7A7981;
padding-top:2px;
}
#content1
{
border:0px solid red;
/*background:url('images/product_horizontal_sep.jpg') 0px 134px no-repeat;
/*width:634px;*/
float:left;
border-bottom:2px dotted #C5C5C5;
padding-bottom:4px;
}
#content1_image
{
border:0px solid green;
height:136px;
width:125px;
float:left;
margin-top:3px;
margin-left:5px;
}
#content1_page
{
border:0px solid blue;
width:614px;
margin-left:14px;
float:right;
margin-top:-6px;
padding-right:0px;
}
#content1_page_img
{
border:0px solid red;
height:49px;
width:358px;
/*margin-left:60px;*/
}
#content1_page_cont
{
border:0px solid yellow;
text-align:center;
}
#content1_page_cont img
{
padding-left:4px;
padding-top:3px;
padding-right:5px;
}
#willness
{
text-align:center;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:9pt;
padding-left:133px;
line-height:15px;
}
#block-menu-menu-sprite-menu
{
min-width: 50px;
min-height: 60px;
}
#virtual
{
font-weight:bold;
text-align:center;
color:#040001;
padding:0 5px;
font-size:13px;
}
#bizrate
{
border:1px solid #9D9CA2;
height:72px;
width:125px;
margin-left:15px;
margin-top:15px;
margin-bottom:10px;
}
#bizrate_img
{
width:125px;
height:31px;
align:center;
}
#bizz
{
font-weight:bold;
text-align:center;
color:#040001;
text-decoration:underline;
padding:3px 10px;
font-size:13px;
}
bizz a
{
font-weight:bold;
text-align:center;
color:#040001;
text-decoration:underline;
padding:3px 10px;
font-size:13px;
}
#page-wrapper #middle-wrapper #main-content #main-content-inner .node-title
{
/*display:none;*/
}
#sawn
{
border:0px solid red;
height:124px;
margin:0px;
padding:0px;
float:right;
}
#sleep1
{
border:0px solid blue;
float:left;
width:110px;
height:124px;
border-left:1px dotted #D4D4D4;

}
#air1
{
border:0px solid green;
float:left;
/*width:76px;*/
height:124px;
border-left:1px dotted #D4D4D4;
/*padding-right:6px;*/
width:78px;
}
#water1
{
border:0px solid pink;
float:left;
/*width:69px;*/
width:68px;
height:124px;
border-left:1px dotted #D4D4D4;
/*padding-left:8px;*/
}
#nutrition1
{
border:0px solid blue;
float:left;
width:90px;
height:124px;
border-left:1px dotted #D4D4D4;
}
#sleep11
{
border:0px solid green;
height:20px;
float:left;
width:110px;
text-align:center;
}
#sleep11 a
{

color:#458E45;
font-family:Trebuchet MS;
font-weight:bold;
font-size:16px;
text-decoration:none;
}
#sleep12
{
border:0px solid yellow;
height:100px;
float:left;
width:110px;
margin-top:10px;
}
#sleep12 img
{
margin-left:-3px;
}
#air11
{
border:0px solid green;
height:15px;
float:left;
width:78px;
text-align:center;
}
#air12
{
border:0px solid yellow;
height:100px;
float:left;
width:76px;
margin-top:8px;
/*margin-left:6px;*/
}
#air11 a
{

color:#458E45;
font-family:Trebuchet MS;
font-weight:bold;
font-size:16px;
text-decoration:none;
}
#water11
{
border:0px solid green;
height:15px;
float:left;
width:68px;
text-align:center;
}
#water12
{
border:0px solid yellow;
height:100px;
float:left;
width:68px;
margin-top:7px;
/*margin-left:8px;*/
}
#water11 a
{

color:#458E45;
font-family:Trebuchet MS;
font-weight:bold;
font-size:16px;
text-decoration:none;
}
#nutrition11
{
border:0px solid green;
height:20px;
float:left;
width:90px;
text-align:center;
}
#nutrition12
{
border:0px solid yellow;
height:100px;
float:left;
width:90px;
margin-top:6px;
}
#nutrition11 a
{

color:#458E45;
font-family:Trebuchet MS;
font-weight:bold;
font-size:16px;
text-decoration:none;
}

.block_3
{
/*width:208px;*/
width:200px;
float:left;
margin-left:12px;
}
.block_2
{
/*width:208px;*/
width:200px;
float:left;
margin-left:12px;
}
.block_1
{
/*width:208px;*/
width:200px;
float:left;
margin-left:3px;
}
#block_123
{
border:0px solid red;
/*height:198px;*/
width:600px;
/*margin-top:134px;*/
}
#wellness_home
{
border:0px solid red;
/*height:206px;*/
/*width:206px;*/
/*border-right:2px dotted gray;
border-bottom:2px dotted gray;*/
width:203px;
}
#wellness_home1
{
border:0px solid blue;
width:100%;
/*height:21px;*/

color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
}
#wellness_home1 a
{
border:0px solid blue;
width:100%;
/*height:21px;*/

color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
text-decoration:none;
}

#wellness_home2
{
border:0px solid red;
width:100%;
/*height:119px;*/
float:left;
}
#wellness_home3
{
border:0px solid green;
width:100%;
/*height:57px;*/
float:left;
color:#cd2bbd;
font-family:Arial;
font-size:10px;
text-align:center;
}
#wellness_home3 a
{
border:0px solid green;
width:100%;
/*height:57px;*/
float:left;
color:#cd2bbd;
font-family:Arial;
font-size:10px;
text-align:center;
text-decoration:none;
}
#wellness_home4
{
border:0px solid blue;
width:100%;
/*height:28px;*/
float:left;
color:#B66828;
font-family:Arial;
font-size:9px;
text-align:center;
}
#wellness_home4 a
{
border:0px solid blue;
width:100%;
/*height:28px;*/
float:left;
color:#B66828;
font-family:Arial;
font-size:9px;
text-align:center;
text-decoration:none;
}
#wellness_home5
{
border:0px solid green;
width:100%;
/*height:17px;*/
float:left;
font-size:7pt;
color:#507E35;
text-align:center;
}
#wellness_home5 img
{
/*margin-left:4px;
margin-right:4px;
margin-bottom:-2px;*/
}
#logo-text
{
/* width:290px;*/
margin-top:12px;
float:left;
margin-left:-65px;
}
#logo_text1
{
border:0px solid red;
width:
height:
}
#solution
{
color:#297F28;
font-size:22px;
margin-top:5px;
font-family:Maiandra GD regular;
text-transform:lowercase;
}
#plaza
{
color:#BA27AC;
font-size:28px;
margin-top:10px;
font-family:Maiandra GD regular;
text-transform:uppercase;
}
#feature
{
color:#A3A3A3;
font-size:13px;
margin-top:10px;
}
/*#advanced_2
{
width:83px;
height:81px;
float:left;
border:1px solid red;
}
#advanced_1
{
border:1px solid blue;
width:200px;
height:44px;
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
}*/
#advanced
{
border:0px solid red;
/*height:210px;
width:200px;*/
}
#advanced_1
{
border:0px solid blue;
/*width:200px;
height:45px;*/
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
width:100%;
}
#advanced_2
{
border:0px solid red;
width:100%;
/*height:88px;*/
float:left;
}
#advanced_3
{
border:0px solid green;
/*width:200px;
height:41px;*/
float:left;
color:#cd2bbd;
font-family:Arial;
font-size:8pt;
text-align:center;
}
#advanced_4
{
border:0px solid blue;
/*width:200px;
height:28px;*/
float:left;
color:#B66828;
font-family:Arial;
font-size:8pt;
text-align:center;
}
#advanced_5
{
border:0px solid green;
/*width:200px;
height:17px;*/
float:left;
font-size:8pt;
}
#advanced_5 img
{
/*margin-left:1px;
margin-right:1px;
margin-bottom:-2px;*/
}
#water_purification1
{
border:0px solid blue;
/*width:200px;
height:43px;*/
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
width:100%;
}
#water_purification2
{
border:0px solid red;
width:100%;
/*height:98px;*/
float:left;
}
#water_purification
{
border:0px solid red;
/*height:206px;*/
/*width:203px;*/
width:203px;
/*border-bottom:2px dotted gray;*/
}
#air_filtration1
{
border:0px solid blue;
/*width:200px;
height:21px;*/
/*float:left;*/
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
width:100%;
}
#air_filtration2
{
border:0px solid red;
width:100%;
/*height:105px;*/
float:left;
margin-top:0px;
/*height:105px;*/

}

#magnetic_sleep1
{
border:0px solid blue;
width:100%;
/*height:35px;*/
/*float:left;*/
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
/*margin-top:6px;*/
}
#magnetic_sleep2
{
border:0px solid red;
width:100%;
/*height:99px;*/
float:left;
}
#organic_nutrition1
{
border:0px solid blue;
width:100%;
/*height:33px;*/
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
/*margin-top:3px;*/
}
#organic_nutrition2
{
border:0px solid red;
width:100%;
/*height:104px;*/
float:left;

}
#health-support1
{
border:0px solid blue;
/*width:200px;
height:40px;*/
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
width:100%;
}
#health-support2
{
border:0px solid red;
width:100%;
/*height:101px;*/
float:left;
}
#organic_skin1
{
border:0px solid blue;
width:100%;
/*height:33px;*/
float:left;
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
/*margin-top:12px;*/
}
#organic_skin2
{
border:0px solid red;
width:100%;
/*height:106px;*/
float:left;
}
#wellness_technology2
{
border:0px solid red;
width:100%;
/*height:76px;*/
float:left;
}
#news_coverage2
{
border:0px solid red;
width:100%;
/*height:90px;*/
float:left;
}
#news_coverage1
{
border:0px solid blue;
width:100%;
/*height:50px;*/
/*float:left;*/
color:#9c9c9e;
font-family:Trebuchet MS;
font-size:13pt;
text-align:center;
font-weight:bold;
}
#footer_bottom
{
border:1px solid #64A165;
height:91px;
/*padding-top:15px;*/
}
#footer-bottom
{
/*region*/
}
#footer_bottom1
{
border:0px solid green;
height:75px;
float:left;
width:100%;
margin:0px;
}
#footer_bottom2
{
border:0px solid blue;
height:15px;
float:left;
width:100%;
color:#1B1110;
/*font-size:0.8em;*/
font-size:10px;
text-align:center;
}
#footer_bottom11
{
border:0px solid red;
height:57px;
width:195px;
margin-top:5px;
margin-left:9px;
float:left;
}
#footer_bottom12
{
border:1px dotted #BDBCC2;
height:67px;
width:137px;
float:left;
margin-top:4px;
margin-left:15px;
}
ul.footer_menuA
{
border:0px solid blue;
margin-top:3px;
margin-left:4px;
}
ul.footer_menuA li a
{
color:#01BDFA;
font-size:16px;
text-decoration:none;
}
#footer_bottom13
{
border:0px solid green;
height:67px;
width:187px;
float:left;
margin-top:4px;
border-right:1px dotted #BDBCC2;
border-top:1px dotted #BDBCC2;
border-bottom:1px dotted #BDBCC2;
margin-left:0px;
}
#footer_bottom13a
{
color:#BC955A;
font-weight:bold;
text-align:center;
}
#footer_bottom13b
{
border:0px solid red;
height:20px;
width:124px;
margin-left:30px;
}
#footer_bottom13c
{
color:#A5A5A5;
font-size:12px;
text-align:center;
}
#footer_bottom14
{
border:0px solid red;
height:60px;
width:181px;
float:left;
margin-top:4px;
color:#00C0FE;
font-weight:bold;
text-align:center;
margin-top:12px;
margin-left:20px;
font-size:13px;
}
#nikken_discover
{
margin-left:3px;
margin-top:3px;
}

#bring_wellness
{
border:0px solid red;
margin-top:-4px;
width:358px;
margin-left:211px;
}
.sidebar-left .sidebox-content ul.menu li.last
{

border-bottom:1px dotted #C7C7C7;
}
#main-content #squeeze #main-content-inner .breadcrumb
{
display:none;
}
.content_1
{
border:0px solid red;
}
#content_main
{
width:630px;
float:left;
}
#content_main td
{
padding:0px;
/*vertical-align:top;*/
border-right:2px dotted #C5C5C5;
border-bottom:2px dotted #C5C5C5;
height:100%;
width:200px;
}
/*#air_filtration2 img
{
width:100px;
height:100px;
}
#wellness_home2 img
{
width:100px;
height:100px;
}
#advanced_2 img
{
width:100px;
height:100px;
}
#water_purification2 img
{
width:100px;
height:100px;
}
#magnetic_sleep2 img
{
width:100px;
height:100px;
}
#organic_nutrition2 img
{
width:100px;
height:100px;
}
#health-support2 img
{
width:100px;
height:100px;
}
#advanced_2 img
{
width:100px;
height:100px;
}
#organic_skin2 img
{
width:100px;
height:100px;
}
#news_coverage2 img
{
width:100px;
height:100px;
}
#wellness_technology2 img
{
width:100px;
height:100px;
}*/
#wellness_home5 img
{
padding-left:3px;
padding-right:2px;
}
#wellness_home5 a
{
color:#507E35;

font-size:7pt;
padding-left:3px;
padding-right:3px;
border-right:1px solid gray;
text-decoration:none;
}
#wellness_home5 a.seper
{
border:none;
}
#middle-wrapper #main-content #main-content-inner table
{
border:none;
}
#middle-wrapper #main-content #main-content-inner div.view-videogallery div.view-content table td
{

}
#middle-wrapper #main-content #main-content-inner table tr
{
/*background:url('images/product_horizontal_sep.jpg') no-repeat;*/
/* border-bottom:1px dotted #C5C5C5;*/
}
#content_main tbody
{
border:none;
}
#field-items odd
{
display:none;
}
.field .field-label
{
display:none;
}
.node-inner .submitted
{
display:none;
}
#main-content-inner .node-title
{
font-size:16px;

}
/*.field-item
{
border:0px solid red;
width:320px;
}*/
.field-item #video-plain-1
{
border:0px solid red;
margin-top:20px;
}
#video-plain-2 .flowplayer
{
width:300px;
height:170px;
}
/*#video-plain-2_api
{
width:300px;
height:170px;
}*/
.field-item
{
border:solid red 0px;
}
.views-view-grid td
{
border:none;
padding:6px;
}
/*#video-plain
{
border:1px solid red;
width:500px;
height:300px;
}*/
}
div.justf
{
text-align:justify;
border:1px solid red;
}

div#page-wrapper div#middle-wrapper div#main-content-inner div.node-inner{
padding-left: 0px;
}
#page-wrapper #middle-wrapper #main-content-inner .node-title
{
dissplay:none;
}
div#page-wrapper div#middle-wrapper div#main-content-inner div.node-inner div.taxonomy
{
display:none;

}
div#page-wrapper div#middle-wrapper div#main-content-inner div.node-inner div.taxonomy ul.links li a
{
color:000000;
}
#main-content #main-content-inner .view-videogallery .views-view-grid .views-field-title
{
border:0px solid red;
padding-bottom:8px;
font-size:18px;
}

Comments

bwv’s picture

I found this code in admin.css. So try this:

td {
border-bottom:0 solid #999999;
padding:10px;
mnanda108’s picture

Thanks my friend, you're awesome - that did it ! I spent quite some time trying to figure it out. such a simple thing but for someone who has no idea it's a huge task. Thank you very much.

Mike

bwv’s picture

My pleasure.