HelpStudio V3: Which HTML construct generates me a table WITHOUT frames?
<table border = "0"...> always draws to me the lower frame of every table line.
4 comments
-
Permanently deleted user The best way to do this is to define a named style for the table and a related style for the cells in that table. You can then select the table in the content editor and click on your style in the Style Picker to apply it. Here's the css text to add to your projects customstyles.css stylesheet:
The div#mainbody bit is necessary to avoid conflicts with the existing default styles.div#mainbody table.noborders
{
}div#mainbody table.noborders td
{
border-style: none;
background: none;
}/* This placeholder style ensures that the custom style above appears in the style picker */
table.noborders
{
}Let me know if you have any problems getting this working.
-
RG Unfortunately, I do not achieve the aim. I have different problems on my way with which I get on not really.
Question: Could you put a small demo project including a table without frame - as you described - for download and place a link to it in the forum? I think this would be the fastest way for achiving the aim - for me and other users, who have the same problem. -
Permanently deleted user I've uploaded a sample HelpStudio project that contains the custom style (in stylesheets\customstyles.css) and a single topic illustrating the style.
Let me know if you have any further problems.
-
RG Thanks - all open questions regarding this problem are resolved through your demo-project.