This topic is locked

Formating Priner Friendly Page

5/14/2007 3:27:07 PM
ASPRunnerPro General questions
S
stealthwifi author

Hello,
I am trying to get the cells in a table as small as possible, I have tried using the smallest possible font and draging and changing the size of the cells and boxes, using percents like 2% and trying 2px and 1px and every combonation i can think of with the visual editor and in the HTML editor and it is still very large for my needs.
Basicly I have a picture (set to 150 X 100) and 4 Columns and 13 Rows.

I need those 4 Columns and 13 Rows to fit right next to the (150 X 100) picture or as close to the same size as possible.

example below: [--- = Picture] [ = Rows & Columns]
|-------------|
||||

|-------------|
||||

|Picture-----|
||||

| -------------|
||||

|-------------|
|||**|
The closes I have gotten is the Rows and Columns to be 4X the size of the picture.

The pictures will print out at about 1 inch by 2inches on paper.

I have tried using multiple tables and still can not get this to work, in the regular View page i have come close so the rows and colums are about 2X the pictures size.
Please any help is apreciated!
Cheers,

Stealth-

Sergey Kornilov admin 5/14/2007

Well, this is the case when one picture worth thousand words. Some URL or screenshot can be a great help.

S
stealthwifi author 5/15/2007

Here are some pictures: Photo Bucket Album
This pic Is what it currently looks like:

I need to shrink the font and everything else to look like this on printing (I just shrunk the image in paint):

This is how i have it set up in a table in asprunner:

(these photos are the same ones as in the photo bucket album, I jsut put multiple links incase one went down)
Thank you for your help!
Cheers,

Stealth-

Sergey Kornilov admin 5/15/2007

Stealth,
zip and send the whole project directory to support@xlinesoft.com. I'll see what can be done about this.

S
stealthwifi author 5/16/2007

Zipped and sent as requested <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=17955&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' />
Cheers,

Stealth-

S
stealthwifi author 5/18/2007

Thanks Again!
For anyone else who might run into this problum, Jane & Sergey emailed me a fix.

  1. replace all <font size=1> tags in the templates/report_print.htm file with following:

    <font style="font-size: 7px;">
  2. use following code as Custom on the "View as settings" dialog for the Grading field:

    (this got rid of the annoying space that kept popping up in the box)

    [codebox]str = "<span style=""width:100%;BACKGROUND: "

    if strValue="Rule Violation - Red" then

    str = str & "Red"

    elseif strValue="Rule Violation - Orange" then

    str = str & "Orange"

    elseif strValue="Safety Concern - Yellow" then

    str = str & "Yellow"

    else

    str = str & "Green"

    end if

    str = str &""">"&strValue

    strValue = str

    [/codebox]
    Stealth- <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=18033&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' />