Unwanted table borders? View css file in CS6?

I have just upgraded to InDesign CS6 and want to use the epub feature to convert existing InDesign documents to pubs. I want to tweak the css file, but I must be blind because after I export it to epub, all I see is the epub file. No css file.
I tried changing the extension to .zip, but when I use the Archive utility to unzip, it hangs up and I have to force quite. (OSX 10.8.1)
I exported the InDesign file to HTML and can view it that way. However, the css says my table has no borders, yet they appear in the epub file. So maybe it's not the css, but something in the InDesign file?

On a Macintosh, you need to use a script to uncompress and recompress the CSS file.
Unzip and Zip EPUB files safely with these AppleScripts ...
You could also use a utility like BBEdit or a program like Dreamweaver or Oxygen Author to edit the EPUB components.
Sounds like you need to learn a little more about creating EPUB from InDesign. Two best choices:
Ebooks from Elizabeth Castro:
Formatting ebooks - EPUB Straight to the Point - Elizabeth Castro
Or videos by Anne-Marie Concepcion on Lynda.com.

Similar Messages

  • Should I define tables in the CSS file or from the Table option on the menu bar?

    I am having trouble understanding which table definitions are the ascendant ones: the CSSfile table definitions or the definitions from the Table option on the menu bar. Is there a conflict if I am applying the CSS style to every topic? Who wins...CSS or Table?

    Hi there
    Sorry, but I think you are a bit confused. I'm assuming here that you are referring to defining tables via the toolbar? Where you use this button?
    That simply inserts the table structure which is later styled using CSS.
    Then there is the other option where you click Table > Insert > Table and you do two things. You insert the table structure as well as some special CSS codes that are added to your CSS file.
    Cheers... Rick

  • Error in Upload file-table or view does not exist-wwv_flow_file_objects$

    Hi,
    i am trying to upload a file and then store the contents of the file into one of my tables in the schema.I wrote one package for uploading the file and then a process to insert each record in the uploaded file to the table in my schema.When i try compiling the package it gives an error.
    PL/SQL: ORA-00942: table or view does not exist
    The name of the table is wwv_flow_file_objects$
    The package is as follows-
    CREATE OR REPLACE PACKAGE BODY Text_File_Pkg AS
    FUNCTION get_file_lines (
    p_file_name IN VARCHAR2,
    p_lines IN OUT line_tab_type,
    p_rec_sep IN VARCHAR2 DEFAULT dos_new_line
    ) RETURN INTEGER
    IS
    v_binary_file BLOB;
    v_text_file CLOB;
    v_dest_offset INTEGER := 1;
    v_src_offset INTEGER := 1;
    v_lang_context INTEGER := DBMS_LOB.default_lang_ctx;
    v_warning INTEGER;
    v_rec_sep_len CONSTANT INTEGER := LENGTH(p_rec_sep);
    v_start_pos INTEGER := 1;
    v_end_pos INTEGER := 1;
    v_line_num INTEGER := 1;
    v_file_length INTEGER;
    BEGIN
    IF p_file_name IS NULL
    THEN
    RETURN 1;
    END IF;
    IF p_rec_sep IS NULL
    THEN
    RETURN 2;
    END IF;
    SELECT blob_content
    INTO v_binary_file
    FROM wwv_flow_file_objects$
    WHERE NAME = p_file_name
    AND (mime_type = 'text/plain' OR mime_type = 'application/octet-stream')
    AND doc_size > 0;
    DBMS_LOB.createtemporary(v_text_file, TRUE);
    DBMS_LOB.converttoclob(v_text_file, v_binary_file,
    DBMS_LOB.lobmaxsize, v_dest_offset,
    v_src_offset, DBMS_LOB.default_csid,
    v_lang_context, v_warning);
    IF v_warning = DBMS_LOB.warn_inconvertible_char
    THEN
    -- Unable to convert file.
    RETURN 3;
    END IF;
    v_file_length := DBMS_LOB.getlength(v_text_file);
    LOOP
    EXIT WHEN v_start_pos > v_file_length;
    v_end_pos := DBMS_LOB.INSTR(v_text_file, p_rec_sep, v_start_pos);
    IF v_end_pos = 0
    THEN
    v_end_pos := v_file_length + 1;
    END IF;
    IF (v_end_pos - v_start_pos) > 4000
    THEN
    -- Line exceeds 4000 characters.
    RETURN 4;
    END IF;
    p_lines(v_line_num) := DBMS_LOB.SUBSTR(v_text_file, v_end_pos - v_start_pos, v_start_pos);
    v_line_num := v_line_num + 1;
    v_start_pos := v_end_pos + v_rec_sep_len;
    END LOOP;
    RETURN 0;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    RETURN 5;
    END get_file_lines;
    END Text_File_Pkg;
    Any suggestions.
    Many Thanks,
    Sanjai

    Hi,
    i am trying to upload a file and then store the contents of the file into one of my tables in the schema.I wrote one package for uploading the file and then a process to insert each record in the uploaded file to the table in my schema.When i try compiling the package it gives an error.
    PL/SQL: ORA-00942: table or view does not exist
    The name of the table is wwv_flow_file_objects$
    The package is as follows-
    CREATE OR REPLACE PACKAGE BODY Text_File_Pkg AS
    FUNCTION get_file_lines (
    p_file_name IN VARCHAR2,
    p_lines IN OUT line_tab_type,
    p_rec_sep IN VARCHAR2 DEFAULT dos_new_line
    ) RETURN INTEGER
    IS
    v_binary_file BLOB;
    v_text_file CLOB;
    v_dest_offset INTEGER := 1;
    v_src_offset INTEGER := 1;
    v_lang_context INTEGER := DBMS_LOB.default_lang_ctx;
    v_warning INTEGER;
    v_rec_sep_len CONSTANT INTEGER := LENGTH(p_rec_sep);
    v_start_pos INTEGER := 1;
    v_end_pos INTEGER := 1;
    v_line_num INTEGER := 1;
    v_file_length INTEGER;
    BEGIN
    IF p_file_name IS NULL
    THEN
    RETURN 1;
    END IF;
    IF p_rec_sep IS NULL
    THEN
    RETURN 2;
    END IF;
    SELECT blob_content
    INTO v_binary_file
    FROM wwv_flow_file_objects$
    WHERE NAME = p_file_name
    AND (mime_type = 'text/plain' OR mime_type = 'application/octet-stream')
    AND doc_size > 0;
    DBMS_LOB.createtemporary(v_text_file, TRUE);
    DBMS_LOB.converttoclob(v_text_file, v_binary_file,
    DBMS_LOB.lobmaxsize, v_dest_offset,
    v_src_offset, DBMS_LOB.default_csid,
    v_lang_context, v_warning);
    IF v_warning = DBMS_LOB.warn_inconvertible_char
    THEN
    -- Unable to convert file.
    RETURN 3;
    END IF;
    v_file_length := DBMS_LOB.getlength(v_text_file);
    LOOP
    EXIT WHEN v_start_pos > v_file_length;
    v_end_pos := DBMS_LOB.INSTR(v_text_file, p_rec_sep, v_start_pos);
    IF v_end_pos = 0
    THEN
    v_end_pos := v_file_length + 1;
    END IF;
    IF (v_end_pos - v_start_pos) > 4000
    THEN
    -- Line exceeds 4000 characters.
    RETURN 4;
    END IF;
    p_lines(v_line_num) := DBMS_LOB.SUBSTR(v_text_file, v_end_pos - v_start_pos, v_start_pos);
    v_line_num := v_line_num + 1;
    v_start_pos := v_end_pos + v_rec_sep_len;
    END LOOP;
    RETURN 0;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    RETURN 5;
    END get_file_lines;
    END Text_File_Pkg;
    Any suggestions.
    Many Thanks,
    Sanjai

  • How do I remove unwanted table/ cell borders in firefox

    I just built my website in dreamweaver. When I preview it, it
    looks fine in both firefox & safari. However when i post and
    view my site online, i see unwanted cel borders in firefox...I've
    already checked the code and the border is set to 0 - any help is
    much appreciated
    thanks! Maura

    Hi Maura,
    Nice site and great art!
    I see the borders in firefox but not in internet explorer.
    I'm no expert on this, but have you tried altering the cell
    padding and cell spacing value - for example, both to zero? Does
    this help?

  • Dreamweaver Extension to view all included CSS files in a document?

    Is there such an extension that would allow you to view, via a panel, all inlcuded CSS filed within a document?
    It would be so nice to see a nice list of all of your included CSS files, especially when there are several, and also being able to launch them and edit them without having to go into code view within the document, find the reference, and then Ctrl+D to edit the stylesheet.  I swear I saw something like this once, but I can't find it anywhere now...

    Have you looked in the CSS Styles panel? If you have "All" selected, then you can see cach attached CSS file and perofrm any edits you want to and not have to open the files. Also, if you have Dreamweaver CS4, then the Related Files bar lists all related files, including any CSS files and you can select the CSS file name and you can edit the files directly.
    While in the CSS Styles panel, if you right click on the selector, or on the properties for a selector, then you can choose Goto Code which will take you to the correct file and the correct line for the code of the specific selector.
    Or am I missing something that you're trying to accomplish?

  • Dreamweaver cs6 View CSS

    as the title says i am having a problem with CSS pages in DWcs6
    i don't know how to enable it (the split and the design buttons are greyed out)
    any hints?

    CSS files contain text only instructions for formatting HTML tags.
    There is no Design or Split View for CSS files since there's nothing to see other than text.
    Open a HTML or PHP file which is linked to the CSS and you can then see the effects of the CSS on the web page.

  • DW CS6 won't open CSS files

    When trying to open any css file in DWCS6, I get "Unexpected file format"
    If I try to preview a page that has a CSS file attached to it, I get "Attempted to access a file past its end".
    Was working fine yesterday.
    I'm fully updated (according to file manager).
    I've tried restarting and reupdating.
    Any ideas?
    Thanks for any help!

    Good news: this most likely isn't a problem with your DW software. (According to what I've read on this error)
    Bad news: It's probably an (unrecoverable) error with the file(s). It most commonly occurs with .rvt (architectural software) files. When i looked the error up it said the only thing that can be done is to use a back up file that hasn't been corrupted.
    With a CSS file, you might want to try opening it in Notepad (Windows) or TextEdit (Mac). If it'll open there you can copy the code and paste it into a new CSS file and overwrite the corrupted one(s).
    If it won't open in a text editor, it's probably broken beyond use.

  • The html5 tags nav in the broilerplate.css file - fluid grid

    Ok.  I am working with the fluid grid system in DW CS6.
    in the broiler plate.css file i see the below code  which seems to control the styling for the listed html 5 elements.
    HTML5 display definitions
       ========================================================================== */
    article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
    audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
    audio:not([controls]) { display: none; }
    [hidden] { display: none; }
    /* =============================================================================
       Base
       ========================================================================== */
    why did adobe set the nav id to display as a block element.
    this is causing me issues with using the above tags.
    My navigation bars name is nav.  I attempted to create another css rule with the display set to INLINE for my menu.
    The boiler plate code is overwriting my rule.  Why?  What is the best way to label my divs.  I was tring to go HTML 5 but fluid grid already has some rules in place.  Can i modify that without problems?  what is the best thing to do.  Not label my divs with the HTML5 labels?
    why are all html5 tags  set up to display that way.  How are you supposed to have individual control?  without breaking the fluid grids factory helper rules?

    Thanks for those charts.  I am building the site for both myself and my visitors.  After looking at your chart I think 90% is good enough for me.  My old website that I am rebuilding used framed pages and front page to build it.   I am making my layout so that IF i find that the fixed nav box is too Dicey I will just pull it off the site.
    I am not suse which browser dreamweaver has built in.  I moved into a new windows 8 computer with CS6 at the same time.  I have not downloaded any browsers yet.  I was just building this based on the newest stuff released.  I am far from testing it out and should have gotten some done by now.  AS of right now I have 140 hours in building my new layout and learning CSS coding.  I have not uploaded yet to a URL so I will need to get back to you when I do.  The little bugs keep setting me back to zero.  The layout looked like it all snapped to the grid.  My layout divs were 12 column with 4 divs approx 200 px 400px 300px and 300px everything snapped to and looked fine.  When I started adding my PS images and content to my divs the 4th div fell back down a row in the view.  I then click the arrow to move it down a row which it did then I tried to move it back up.  It would not go.  I have boxes with borders, radius corners, and dropped shadows on the containing box.  I looked at it and starting thinking the CSS styles made it wider than the fluid grid would allow.  So i then removed the styles and it is still stuck a row below where it should be.
    Futher down my page I have 4 more rows with 4 divs in each row.  The last 4 all drop down so that it is totaly different than what I a laid out.  It is weird because my div is three colums wide.  I have the last three colums open on the lay out but it will not move up and it seems like the margins are tight or the gutter is wrong.  I am not sure.

  • Modifying Viewer CSS

    Hi.
    We would like to change result set table layout in Disco Viewer.
    The problem is, that standard css makes the table "too big".
    In EM you can change only colours and default font size.
    In Plus you can set a font size for the worksheet, but no matter how small you make the font, the table rows' height remains the same (in the Viewer).
    The solution I'm looking for would allow me to change for example cellpadding="3" in the following row:
    <table summary="Table with the following columns : Warehouse, Item number, On-hand balance approved, Safety stock, Motrqt SUM, Moorca, Mopldt" border="0" cellspacing="0" cellpadding="3">
    I was searching for some instructions how to modify Discoverer CSS, but was not able to find nothing more than it is something around .uix or .xss files on server.
    I realized that cached css files used by Viewer are generated form the .xss, but that's all.
    Can anybody help?
    Or is there any simpler solution?
    Thanks, Jakub.

    Jakub.
    I'll try to point you to what I believe - but may not be exactly correct.
    Under the newest Disco versions (plus, viewer), you are able to alter how the Discoverer page 'is assembled'. People have been using this for deleting the logo - or putting their company's on, turning off options (ie: File command only has a few options), stopping exporting for all types except for Excel, etc.
    As the UIX file contains all the good code to 'assemble' the page, altering this can be satisfying to get what you want.
    However, you'll get all the "it's not supported by Oracle", "you'll lose support", etc. posts, but if you manage what you're doing like companies do with Oracle Apps forms or Oracle Apps reports, you won't have a problem.
    Basically, before starting any changes to the UIX file, copy the original to a saved, untouchable area. Actually, just copy all UIX files into that area and never write on top of them again. Now, make your changes and if you screw up, copy back the original one on top.
    A good blog showing this is the Oracle BI product manager's website at:
    http://oraclebi.blogspot.com/
    Just go to the search at the top of the blog, type in UIX or something similar and search the blog.
    You'll see the kind of things he's doing and if it's applicable to the kind of thing you want.
    Russ

  • Poor Quality Table borders in PDF

    Hello.
    I am having problems having the tables borders in Word 2007 look the same in the PDF (using Arobat 9 Pro). The quality is very poor which appears the lines are thicker than in the Word document. I am using 4000 DPI, High Quality print but still looks bad.   Images look good it is just the table borders that are the problem.  Do you have any suggestion in improving this? Or is this a problem I have to live with?
    Regards,
    Len

    Converting Word (table) to pdf - lines screwed up - googled as far back as 2004.
    BUG STILL exists. HELP/FIX PLEASE? 
    http://www.pcreview.co.uk/forums/missing-table-lines-conversion-pdf-t878406.html 
    http://forums.adobe.com/thread/305508 
    Trying to convert any word doc with tables (& shading) to PDF 
    - basic table, black borders throughout 
    - shaded headings, black outline border 
    - shaded subheadings, black outline border 
    However when convert to PDF: 
    - 'displays' NO top cell border for some/all shaded rows 
    - shows diff thickness lines 
    - each conversion, diff lines missing/incorrectly sized 
    - however converted pdf prints perfectly fine 
    Adobe know about the bug, per PRMW's (Paul's) post on 2009-07-15  15:44:34, however only offered a painful time consuming workaround using  non-freeware Adobe Pro: 
    http://acrobatusers.com/forum/pdf-creation/word-pdf-table-lines-missing-or-faded#comment-7 8139 
    - "It is not feasable to edit 200+ tables in the PDF every time the PDF is generated, as we maintain the original in word. 
    - "This complete issue seems to have been passed off by Adobe as no  problem and that there is a work around. I consider this an  unsatisfactory response from a major product supplier. 
    Microsoft TechNet & NitroPdf said it's an Adobe issue & to contact Adobe to fix the bug. 
    Tried, but proble exists: 
    * Word 2010 > File  > Save & Send > Create PDF/XPS Document 
    * Word 2010 > Save As > Pdf 
    * Word 2010 > Print > PrimoPdf  (even tried properties > advanced > dpi 300/600/2400) > Custom 
    * Word 2010 > Print > doPDF v7  (even tried 'high quality images) 
    * Word 2010 > Print > PDFCreator 
    * Word 2010 > Print > CutePdf Writer      (even worse) 
    * Nitro Pdf Reader  > Convert From File > (even worse) 
    * www.pdfonline.com > Word to Pdf         (even worse) 
    * www.wordtopdf.com > email: Sorry, an unexpected conversion failure occurred when converting your file. 
    Software: 
    * Word 2010 - tried with .docx & .doc (97 to 2003) 
    * Adobe Reader 8.2.6 (freeware), then upgraded to Adobe Reader X 10.0.1 (freeware) 
    * GhostScript 9.01 w32 (freeware) 
    * CutePdf Writer (freeware) 
    * PrimoPdf (freeware) 
    * Nitro Pdf Reader 1.4.0.11 (freeware) 
    * doPDF 7.2.361 (freeware) 
    * PDFCreator 1.2.0 (opensource - www.pdfforge.org) 
    Seems to display better at 300%, but lines still not right (even at 2400%), but who views pdf's at this zoom? 
    Message was edited by: shell_l_d

  • Viewing AI file in ID as cmyk when the file is rgb. Why?

    I've upgraded from CS5 to CS6 and this is the first time I'll have used Illustrator. I've worked on an rgb file that I downloaded from iStock. I saved it as an rgb file but before I saved the file, I viewed the vector image in cmyk mode just to see what it would look like. I closed the file and opened my document in ID that I wanted to place my AI file into. When I placed it into the ID document, it imported as a cmyk file. I wouldn't have known what had happened if I hadn't viewed it as a cmyk file when I had saved it in Illustrator. I've never experienced this before so am curious as to why this is happening. I'm working in OS10.8.2 on a Mac Pro tower (whether this makes any difference or not, I don't know, but I've been asked these questions before when coming to the forums.) I've seen on other posts this is a color management glitch in CS6. Has there been a fix? Or is there some other bug?

    How do you 'view' the file? A SWF file is meant to be launched from its companion HTML file (name.htm) which will call the JS and CSS files and then launch the SWF.
    Do you see the playbar when you Preview in Browser (F12)? Can you check version number: 8.0.1.242 is the present version of 8.

  • How APEX stores CSS files in a database?

    We are trying to locate the tables in a database, where APEX stores the CSS Aplications files?
    We have lost some important CSS and Java Script files and we have a backup of these files. However we can not locate the table in a database, where we have to upload these backup? There is too many files to install them manually. Please help!
    Thank you for your expert consideration!

    Hi,
    uploaded files are stored in the wwv_flow_files table as BLOB.
    Try select * from wwv_flow_files.
    As they are stored in the database, you can't find them in the hard disk drive.
    As far as I know they can only be viewed in Shared Components > Cascading Style Sheets (for CSS files).

  • CSS files not updating correctly

    I'm having some trouble with the css files that are uploaded throught the application builder. When uploading an update to an existing css file, the file is not updated in the browser. Even after closing all browser windows and deleting the temporary internet files the new version is not loaded. I've even tried deleting the file from the app builder and holding the control key down when refreshing the browser and it still loads as if one existed. We currently have 3 seperate server environments and it works fine on 2 out of the 3...could this be a setting on the application server when the file is fetched from the database? It is currently calling:
    wwv_flow_file_mgr.get_file?p_security_group_id=721404936311769&p_fname=iPRACA.css
    I know the correct file is being uploaded to the database because when I view the detailed report in the application builder and click on the file name, the updated version is displayed in the text area. But, when I click on the download icon and open the css file to view, it is still the old version.
    I'm currently using APEX version 2.3 and OAS 10.1.2
    Any help would be greatly appreciated.

    Hi YodaHart,
    What happens when you rename your css?
    Does it work then?
    I also guess it's the Oracle AS. However we should investigate further on what you're thinking.
    If you query WWV_FLOW_FILE_OBJECTS$ you still see the files while you don't see them in APEX anymore? If yes, I would create another table as select of the WWV_FLOW_FILE_OBJECTS$ table, just to have a backup. If the files aren't used anymore, you should be save by deleting the corresponding old records (for ex through SQLPLUS). After all, these are files you uploaded...
    Thanks,
    Dimitri

  • Retaining format of table borders of Help done in Robohelp 7 into RoboHelp 9

    Does anyone know how to import or retain the properties of table borders/cells of a Compiled HTML Help Module that was generated in RoboHelp 7 into RoboHelp 9? I'm using RoboHelp 9 for my work and have to generate an HTML Help using RoboHelp 9. But the previous Help was generated in RoboHelp 7. When I have to generate the new Help in RoboHelp 9, this RoboHelp doesn't have the same properties of the table borders of the previous Help. Please help.

    I'm still not sure about what you are using and were using in Rh7. Rh for Word has an HPJ file to open it, Rh HTML has an XPJ file. They are different from an HHP file which is also a Rh HTML file.
    Both generate CHMs so once we are certain about that Rh HTML is what your Rh7 project was in, we can deal with the table problem.
    If Rh for Word is what is in use, then it should not have changed. In Rh HTML tables are now CSS driven but your old ones should not have been affected. Let's cover that when we are certain of the version of Rh the project is in.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Adjusting table borders in DW

    I must say this has been frustrating me greatly.
    I've been trying to resructure the layout of a DW template to suit
    my own web page. That has involved trying to change the sizes of
    some of the tables and shifting them around the page a bit. I've
    found that DW is VERY uncooperative with me, and if I adjust the
    border of one table on the page it will move the border of other
    tables all over the page, or sometimes it will just act like it's
    locked in place and it won't move at all. Very stubborn. I fought
    with a page for hours last night trying to get it to appear how I
    wanted. In the end I had to change my idea of how I wanted it to
    look because it just flat refused to do what I wanted. Are table
    borders just uncooperative bastards, or is there a method I'm
    unaware of? Please help!!!
    :

    Kenny Stringer wrote:
    >
    I must say this has been frustrating me greatly.
    I've been trying to
    > resructure the layout of a DW template to suit my own
    web page. That has
    > involved trying to change the sizes of some of the
    tables and shifting them
    > around the page a bit. I've found that DW is VERY
    uncooperative with me, and if
    > I adjust the border of one table on the page it will
    move the border of other
    > tables all over the page, or sometimes it will just act
    like it's locked in
    > place and it won't move at all. Very stubborn. I fought
    with a page for hours
    > last night trying to get it to appear how I wanted. In
    the end I had to change
    > my idea of how I wanted it to look because it just flat
    refused to do what I
    > wanted. Are table borders just uncooperative bastards,
    or is there a method I'm
    > unaware of? Please help!!!
    >
    Web design is not like photoshop or any print/visual design
    program. You can't just drag and drop
    your layout elements. To do things right in Dreamweaver you
    have to know a little bit about html and
    css, and the less you know about them the more you should
    look at your code and try to understand
    what it all means.
    you are talking about dragging table or cells borders in
    design view to adjust their sizes? Not a
    good idea to do that.
    Tables are not meant to be dragged like that. You can either
    define your tables width in pixels
    (only the width, you CAN'T define the height of a table -you
    just can't), or leave the dimensions
    blank, so that they will naturally adjust their size
    according to their content.
    The content of a table is what gives it its size. If you drag
    the table's border in design view,
    Dreamweaver will have to insert some code that will
    supposedly define the sizes of the tables and
    cells, but unreliably. The more you drag and push, the less
    the resulting code generated by
    Dreameaver will be reliable.
    And yes, cells inside a table are a relative world, meaning
    that if you adjust a cell border, all
    other cells will be affected.
    The key facts:
    -dragging/pushing borders in design view is not a way to go
    -you CAN define a table (or cell) width in pixels, but you
    CANNOT define its height. (so it is
    pointless the adjust their height visually in design view, it
    won't work)
    -you will remain frustrated untill you learn html and css
    basics (billions of tutorials online) -I
    say html and css, not "Dreanweaver". Then, when you know some
    basics, and go back to using
    Dreamweaver, look at your code. Look at your code. Look at
    your code...
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

Maybe you are looking for