Hello,
I have a small Notes Database with webviews and a search button in an action bar (view template with embedded view and action). So far it works fine, but I would like to use an image for the action bar. The image is shown but I have also a table border around it.
Where can I turn off this border without using a java applet button?
The created html code is
The problem is the table border=1. I set all borders in designer to 0 but it doesent have any effect. I also cannot find where the gray background color for the table cell is set.
Anyone knows how to do this?
Subject: How to get rid of border around action in web?
The border is coming from the table. Remember in a table, the first cell controls the border for the entire table. Try:
Subject: RE: How to get rid of border around action in web?
Hi,
yes, I know, but the table is generated from the notes database. How can I change the layout of this table that is used for the action bar?
Subject: How to get rid of border around action in web?
try loading this javascript function on the onload event./Fredrik
function HideActionTable(){
var oTable ;
var f=document.forms[0];
for(var i=0;i<f.children.length;i++){
if (f.children[i].tagName==“TABLE”){
oTable=f.children[i];
oTable.children[0].children[0].bgColor="white";
oTable.border=0;
oTable.cellpadding=0;
oTable.cellspacing=0;
break;
}
}}