View Single Post
  #3  
Old 09-04-2003, 12:31 AM
 
magnumkp magnumkp is offline
 

eXpert
  
Join Date: Apr 2003
Location: England
Posts: 304
 

Default

Yes, as well has head.tpl and customer/home.tpl,

You will need to create about 6 border styles in the css. Here is an example of my css file. I have split them up because you can't just stick a border around the head.tpl because it isn't in the home main table so you end up with double lines:

.tabletopleft {
border-top : 1px solid #A5A5A5;
border-left : 1px solid #A5A5A5}

.tabletopright {
border-top : 1px solid #A5A5A5;
border-right : 1px solid #A5A5A5}
}

.tableleft {
border-left : 1px solid #A5A5A5
}

.tableright {
border-right : 1px solid #A5A5A5
}

.tablebotright {
border-bottom : 1px solid #A5A5A5;
border-right : 1px solid #A5A5A5}
}

.tablebotleft {
border-bottom : 1px solid #A5A5A5;
border-left : 1px solid #A5A5A5}
}

.tabletop {
border-right : 1px solid #A5A5A5;
border-left : 1px solid #A5A5A5;
border-top : 1px solid #A5A5A5;}
}

.tablebottom {
border-bottom : 1px solid #A5A5A5;
Reply With Quote