I tried to apply the same style as a form but does not align the data fields.How do I apply css to a feed. I using the feed to create printable report. II pass a variable to select one record.
<STYLE>
.xmp-FRM_QANCR { padding: 5px 5px 5px 5px; font-family:Oswald, Arial, Helvetica, sans-serif;}
.xmp-FRM_QANCR .xmp-form-row { margin: 2px; padding: 1px; clear:left;}
.xmp-FRM_QANCR label.xmp-form-label, .xmp-FRM_QANCR span.xmp-form-label{ display:block; float:left;
width: 70px;text-align: left; margin-right: 15px;font-family:Oswald, Arial, Helvetica, sans-serif; }
.xmp-FRM_QANCR .xmp-button { margin-right: 5px; font-family:Oswald, Arial, Helvetica, sans-serif;}
.section { padding:0px; margin:10px 0; background-color:#E6E6EF;border-left:1px solid gray; border-right:2px solid black; border-top:1px solid gray;
border-bottom:2px solid black; }
table td {
vertical-align: top;
}
</STYLE>
<div>
<div><Label>Report</Label></div>
<div>
<table>
<tr>
<td><div><Label width="120" >Days Open [[Opendays]] Days</Label></div></td>
<td><div ><Label width="120" ></Label></div></td>
</tr></table>
</div>
<div><Label>Information</Label></div>
<div>
<table>
<tr>
<td><div><Label width="120" ><strong>Rep</strong></Label>[[No]]</div></td></tr>
<tr><td><div ><Label width="120" ><strong>Date Raised</strong></Label>[[dateNCR2]]</div></td>
<td><div><Label width="120" ><strong>Initiator</strong></Label>[[Name]]</div></td>
<td><div><Label width="120" ><strong>Site</strong></Label></div></td>
<td><div><Label width="120" >[[Site]]</Label></div></td>
<td><div><Label width="120"><strong>Dept</strong></Label></div></td>
<td><div><Label width="120">[[Dept]]</Label></div></td>
</tr> </table>
</div>
I looked at the Edit Form and the Feed Form and compared in google inspect. The same css is used as shown in the above question but span and display inline works in Edit but not in Feed why is this?The lower is from the edit where span is working the top is from the feed and is not.
I will try and make available if you cannot resolve from this.