View Single Post
02-18-2013, 06:37 PM
#5
gruggett is offline gruggett
Status: I'm new around here
Join date: Jun 2012
Location: germantown
Expertise:
Software:
 
Posts: 21
iTrader: 0 / 0%
 

gruggett is on a distinguished road

  Old

So the code goes in the style.css one
Originally Posted by Clevertail View Post
Alright. I think I see what you're trying yo do. You will need to edit the size of your body table within the HTML. Set it to the maximum size you want to display. Next, you will need to edit your styled-elements.css


Code:
/* TABLE ------------------------------------------------------------*/

table, td, th {
	vertical-align:middle;
}

table {
	border-collapse:separate;
	border-spacing:0;
	border-top:1px solid white;
	margin-bottom:28px;
	width:100%;
	text-align: left;
}

th{
	border-top:5px solid #555555;
	color: #ffffff;
	padding:10px;
	text-transform:uppercase;
	background-color: #49494b;
}

td{
	padding:10px;
}

td, th{
	border-bottom: 1px solid #1f1f1f;
}

Thats the section you'll need to edit in the css.

Reply With Quote