Page 1 of 1

[Solved] Any Idea ? Hope you can give me some hints to do it

Posted: Thu Jul 19, 2007 8:07 am
by cpyu99
What I am trying to do is simple, but I don't know how to do it in CMS made simple

1. I want a listing of PDF reports to show in a webepage (Not File manager)

2. This PDF file can upload by myself (I use news module, but I think it is hard to do what I want)

3. The PDF link can directly link to the PDF file in my server.  NOT News Listing -> News Details -> Open PDF file with link embedded in News Content.


Sample : http://www.autosolution-hk.com/cheuknang/investor.html

What Module I should use..  It looks simple, but hard to implement in CMS made simple. 

Thanks in advance

Re: Any Idea ? Hope you can give me some hints to do it

Posted: Thu Jul 19, 2007 11:25 am
by RonnyK
Have you checked the uploads module, that can be used for uploading files, showing/sharing them.

Ronny

Re: Any Idea ? Hope you can give me some hints to do it

Posted: Fri Jul 20, 2007 2:01 am
by Dr.CSS
I thought you were looking to have the PDF to open in the browser...

Unless they have some kind of pluggin it will just want to download to view, you can do it just like this...

http://mobilitypartners.com/index.php?p ... y-partners

The link has a class assigned to it  <a class="pdf"

It was done using this in the CSS...

#main .pdf{
        padding: 5px 0 5px 25px;
        background-image: url(uploads/icons/pdf.jpg);
background-position: center left;
background-repeat: no-repeat;
        color: #587A9C;
text-decoration: underline;
}

Can't attach the image here, no room in the attach folder or some such error...

[Solved] Any Idea ? Hope you can give me some hints to do it

Posted: Fri Jul 20, 2007 11:24 pm
by cpyu99
Thanks Everybody .