This topic is locked

Printerfriendly page with no borders

8/8/2008 7:39:16 AM
PHPRunner General questions
M
motfuz author

Hi,
How can I change the printerfriendly page using the visualeditor so that the (cell) borders al not visible? I just want to display the fields to create for example a letter.
Wim

J
Jane 8/8/2008

Wim,
proceed to theVisual Editortab, turn on HTML mode, find and edit following code:

table { border-collapse: collapse}

td {

padding: 5px;

margin: 0px;

border-width: 1px;

border-style: solid;

border-color: #000000;

}

M
motfuz author 8/8/2008

border-style: none;
Thanks Jane,
Wim