Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/03/2012, 14:09
foxtrox
 
Fecha de Ingreso: noviembre-2011
Mensajes: 16
Antigüedad: 12 años, 5 meses
Puntos: 0
Exclamación Editar CSS (colocar logo y texto)

Que tal, tengo una aplicacion en un server se llama osticket, para hacer ordenes de servicio de soporte tecnico, bueno el asunto es que

estoy agregando el modulo para imprimir los reportes (ya quedo y funciona correctamente)

El asunto es que al imprimir necesito agregar por ejemplo una parte que diga firma de recibio y poner un logo en la parte superior.

Tengo el archivo print.css

Que es el que me sirve para hacer esto.
mi pregunta en si es como agregrar el texto al final del parrafo que me diga firma de recibido:
Dejo el archivo .css


<?php
<?
body { color: black; background-color: white;
font-family: arial, helvetica, sans-serif;
}

/**** elements to hide ****/

#header,
#nav,
table.ticketoptions,
#content div + table, /* SCP tabber after ticketthread */
.Icon, /* all icons */
input.button, /* all buttons */
img, /* all images */
input, /* all input fields, checkboxes, etc. */
#reply /* client reply */
{ display: none; }

#basic, #advance /* SCP search/query */
{ display: none !important; }

/* If we exclude .Icon we need to make some visible, though */
a.otherTicket, a.phoneTicket, a.emailTicket, a.webTicket,
a.assignedTicket, a.lockedTicket, a.overdueTicket { display: inline; }

/**** Margins + Padding ****/

/* osTicket unfortunately uses tables for the layout */
td { padding: 0.2em; }

#ticketnotes, #ticketthread { margin: 1em 0; }
#ticketnotes { margin-bottom: 2em; }

#ticketnotes table,
#ticketthread table { margin-top: 1em; }

/**** Ticket number + Subject ****/

td.msg, div.msg { font-size: 1.4em; padding: 0.3em; }

/**** Borders ****/

table.ticketinfo,
table.infotable,
#ticketnotes,
#ticketthread { padding: 0.4em; border: 1px solid gray; }

#ticketnotes table,
#ticketthread table { padding-top: 1em; border-top: 1px solid black; }

#ticketnotes table:first-child,
#ticketthread table:first-child { padding-top: 0; border-top: 0; }

/**** Miscellaneous ****/

a { color: navy; text-decoration: underline; }
th { text-align: left; }

/**** Ticket lists ****/

/* Borders in ticket lists */
#content div > table table td
{ padding: 0.2em; border-bottom: 1px solid gray; padding-top: 0.4em; }
#content div > table table th
{ padding: 0.3em; border-bottom: 2px solid black;
border-top: 1px solid black; padding-top: 0.5em;
}

#content div > table table a { color: black; text-decoration: none; }