Link to a CD booklet free template?

The title says all: not just cover, but full booklet template.
Thanks a lot!

Hi
It should still be there, even in the trial. Go to File > New Document and then in the dialog look at the Page Size dropdown.

Similar Messages

  • Links in preview don't show template on new page in dreamweaver 2004

    links in preview don't show template on new page in
    dreamweaver 2004?
    I have created new html files using a template, then saved
    the file with a new html name.
    I preview it in my local broswer, the first page I want the
    preview shows uo OK. When I click to link to a new page in my root
    folder, the new page shows up, but not formatted with the template.
    Why and how can I fix this?

    "P@tty Ayers ~ACE"
    <[email protected]> wrote in message
    news:finae3$9vg$[email protected]..
    >
    > "happydreamweaver" <[email protected]>
    wrote in message
    > news:fina1g$9dv$[email protected]..
    >> ?links show new page, but not the template design in
    preview broswer?
    >
    > Not mind reader, need more info. :-)
    Never mind - you already posted this question and got some
    excellent help.
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • Free template help

    I found a free template for a photo gallery and I am having problems making it work. Can someone maybe break the code down a lil bit for me or provide me with some direction. Please.. or maybe reference me to a more simple template.
    here is the code.  for the html:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>www.BuyBoatLiftsCheap.com</title>
    <link rel="stylesheet" type="text/css" media="all" href="gallery.css">
    </head>
    <body>
    <!-- gallery div start -->
    <div class="gallery">
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image01">
    <span><img src="images/pre_image01.gif" alt="Elevator 1"><em>Elevator Lift</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image02">
    <span><img src="images/pre_image01.gif" alt="Image02"><em>Image02</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image03">
    <span><img src="images/pre_image01.gif" alt="Image03"><em>Image03</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image04">
    <span><img src="images/pre_image01.gif" alt="Image04"><em>Image04</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image05">
    <span><img src="images/pre_image01.gif" alt="Image05"><em>Image05</em></span></a>
    </div>
    <div class="no-thumb"> </div>
    <div class="no-thumb"> </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image06">
    <span><img src="images/pre_image01.gif" alt="Image06"><em>Image06</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image07">
    <span><img src="images/pre_image01.gif" alt="Image07"><em>Image07</em></span></a>
    </div>
    <div class="no-thumb"> </div>
    <div class="no-thumb"> </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image08">
    <span><img src="images/pre_image01.gif" alt="Image08"><em>Image08</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image09">
    <span><img src="images/pre_image01.gif" alt="Image09"><em>Image09</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image10">
    <span><img src="images/pre_image01.gif" alt="Image10"><em>Image10</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image11">
    <span><img src="images/pre_image01.gif" alt="Image11"><em>Image11</em></span></a>
    </div>
    <div class="thumb">
    <a href="image01.html"><img src="images/image01_thumb.gif" alt="Image12">
    <span><img src="images/pre_image01.gif" alt="Image12"><em>Image12</em></span></a>
    </div>
    </div>
    <!-- gallery div end -->
    <!-- clear both div -->
    <div class="clear"> </div>
    </body>
    </html>

    This is the CSS Code that goes with the html code..
    /*****    css photo gallery template    *****/
    /*****  http://www.tankedup-imaging.com *****/
    /*****            20/08/2006            *****/
    /* ---------- gallery container ---------- */
    .gallery {
    position: relative;
    width: 624px;
    height: 472px;
    margin: 1em auto;
    /* ---------- opacity ---------- */
    .gallery a img, .gallery a:visited img {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    -moz-opacity: 0.60;
    -khtml-opacity: 0.6;
    .gallery a:hover img {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -moz-opacity: 0.90;
    -khtml-opacity: 0.9;
    /* ---------- thumbnail images ---------- */
    .thumb, .no-thumb {
    float: left;
    width: 149px;
    height: 112px;
    margin: 2px;
    .thumb {
    border: 1px solid #000;
    .no-thumb {
    border: 1px solid #9ff;
    .thumb a img {display: block;}
    .thumb a span {display: none;}
    .thumb a:hover, .thumb a:active, .thumb a:focus {background: transparent;}
    /* ---------- preview image ---------- */
    .gallery a:hover span {
    display: block;
    position: absolute;
    width: 300px;
    height: 225px;
    top: 123px;
    left: 160px;
    /* ---------- preview image text block ---------- */
    .thumb em {
    position: absolute;
    width: 250px;
    top: 200px;
    left: 25px;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    background: #ab5;
    color: #036;
    font: normal 12px/20px verdana,arial,helvetica,sans-serif;
    text-align: center;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.8;
    .thumb a {
    text-decoration: none;
    /* ---------- no border on images ---------- */
    a img {border: 0;}
    /* ---------- clear floats ---------- */
    .clear {
    height: 0;
    line-height: 0px;
    font-size: 0;
    clear: both;

  • Are there any good free templates for motion like the 8 that come with it?

    Hi,
       Are there any decent free templates out there for Motion - similar to the ones that it ships with (ie small intros, lower thirds, etc..)
       Thanks!
      - Jack

    You may want to check here first.
    http://www.fcp.co/forum/9-free-fcpx-plugins-and-templates

  • Free Template Downloads

    When you download the free templates i.e. from WebAssist, they go to a temporary internet file.  What do you need to do to bring them into Dreamweaver?

    Thank you.  I save it and it goes to a zip subdirectory folder.  I tried to open it, it would only open read only with no images.  Do I need to extract it with WinWar?

  • Free Templates For MX

    I use MX and am looking for free templates to download from credible sources.
    Specifically I seek a feedback form with CAPTCHA or another anti-spam measure.
    ta

    Have to say, I fear this is precisely the answer I expected.
    The matters you raise, somewhat overcook my innocuous request for Templates on basic scripting functionality. I am not advocating not learning programming...that would be daft..One begets the other, a win win.
    You do underline my points somewhat, though, in the sensitised tone.
    To clarify:
    Barriers to entry
    Extremely high cost of competent software
    Very steep learning curve. years of practice [as experienced people often describe]
    Overwhelming preponderance of contradictory advice and research, with relatively vague guidance and boundaries
    Huge costs of research material [lest one get lost in the morass of web based claim and counter-claim which are not to be relied upon].
    Books like yours retail at $40, for example [which I have].
    Wordpad is fine for hard coding scripts, but offers little in the way of UI presentation, which has been vital in converting ordinary punters to the internet
    I dont know who thinks that Dreamweaver can do it all for you? I am not aware of anyone who believes that, even of so-called "Code Generators" dont pretend to achieve all [and tend to create more problems than they resolve].
    Quotes: "Anybody can create a sophisticated website with Notepad for the HTML, CSS, and JavaScript, plus a graphics editor for images." and "There's a strange belief that web development must be easy."
    These are self-contradictory statements and morever articulate my points yet further.....why shouldn't web design be easy, pray tell?
    That is expressly the question that IDE developers should be asking?
    It's simple the more accessible my software, the more folks will use it.
    Hard work? Work smart and achive more, surely? The place of business is littered with folks who sit at their desks symbolically, thinking the look like they are working hard. A cursory glance at any basic measures of productivity demonstrates that most of that time is completely wasted. It is a well known syndrome.
    Indeed many, folks have evolved the hard work charade into an art form.
    Academics, have the luxury of time to wade endlessly into flights of fancy, which is as it should because this is how problem solving occurs. Moreover, such folks get paid to so do [and all the power to them].
    My point is that the wider audience wants more efficient ways to achieve defined objectives; as the-crow-flies, not expend valuable energy.
    You say: "There's a strange belief that web development must be easy" What on earth is so "strange" about such an aim?
    Some of the finest pop songs vere composed, were authored in a day! The Model T Ford was like driving a Massey Ferguson tractor compared to the experience in modern cars. Is it strange to want the former "hard work" driving experience over the latter?
    To describe such requests [aforementioned] as somwhow an abrogation of "hard work" is entirely perjorative matter of personal [usually derogatory] and I might proffer diffident, opinion, not least because it suggest that your methods are somewhow superior to others.....once again underlying my point about "elitism".
    Worker A: If I have a problem and find a workable solution to that problem in five minutes, I can then move on to the next challenge more quickly.
    Worker B: If I make a meal out of that problem and take five 15 hour days to resolve the same feasable solution.......tell me this:
    Were you paying someone for their problem solving services, who would you employ in the future? Therein lies the knub of the issue. Or is my logic flawed?
    Why would pay for the person that makes work for themselves, because they worked hard!?
    We can have it all: learn CSS; HTML; Javascript; CGI,XML etc as we go along using the Script Templates and what better than to have peace of mind knowing that an industry leading team of developers had been the ones that put those Templates together. One would then buy in the more sophisticated add ons.
    I can use the time I have saved, by working hard on bringing up my kids.
    w

  • Free Templates for PE

    Hi,
    New wedding Templates
    Design Exclusive and Creative Photo Album with Less labor & less time with the Ready to use Templates Collections. Easy to use Templates Collections not only Save your Time but also Money & Enhance your productivity. This unique collection of Templates presents history of moments experienced in time.
    http://mediacafe.in/product_display.asp?cid=128
    Download Free Templates
    http://mediacafe.in/product_display_free.asp?cid=127
    http://mediacafe.in/product_display_free.asp?currpage=2&cid=83
    Thanks
    www.mediacafe.in

    Hi,
    New wedding Templates
    Design Exclusive and Creative Photo Album with Less labor & less time with the Ready to use Templates Collections. Easy to use Templates Collections not only Save your Time but also Money & Enhance your productivity. This unique collection of Templates presents history of moments experienced in time.
    http://mediacafe.in/product_display.asp?cid=128
    Download Free Templates
    http://mediacafe.in/product_display_free.asp?cid=127
    http://mediacafe.in/product_display_free.asp?currpage=2&cid=83
    Thanks
    www.mediacafe.in

  • Download free Template for PE

    Hello,
    Download free Template for PE
    http://www.mediacafe.in/product_display_free.asp?cid=83
    thanks

    After zip download unzip the zip file and you will found psd file
    that psd file you can open in Photoshop Elements and use it
    still any query please ask
    thanks
    dhiraj

  • Are there any free templates available for MUSE?

    Are there any free templates available for MUSE?

    Thank you for your help!
    Sent from my T-Mobile 4G LTE Device

  • Hi I already used apple's link to remove u2's free album from my account but it has still been on my phone for the past few weeks. Can anyone help me? I can't swipe-delete because I have never downloaded it.

    Hi I already used apple's link to remove u2's free album from my account but it has still been on my phone for the past few weeks. Can anyone help me? I can't swipe-delete because I have never downloaded it.
    Edit: nvm disregard, i jst signed in and out
    Message was edited by: Hanazawa88

    Plus my apps like Mail and Safari randomly quit unexpectedly on me daily.

  • Free Templates for Pages ?

    Hi,
    Where can we find great templates for Pages ?
    <Edited by Host>
    Thanks.

    Welcome to Apple Discussions
    There are several options for templates you can use in Pages. First, there those submitted by other users & available at iWork Community.
    Try Microsoft Office templates. to find links to many PC templates. The Mactopia site has a lot less templates to choose from, but was less involved to download.
    Jumsoft.com also has templates, but I'm not sure how many might be free.
    An advanced Google search for the exact phrase Pages templates should return a lot of options.

  • Technical Link b/w Employee and Appraisal Template

    Hi,
    Can anybody please help me in finding the technical link b/w an Employee and an Appraisal Template? In other words, I need to know the table name(s) in which data is stored while appraisal processed is going on. I can view the appraisal form in IT0024 and IT0025 in PA. I can also see the objects VA, VB & VC in PP01, but where are these entries stored in the table.
    We are on SAP R/3 4.7 (Enterprise) and using new Objective Setting and Appraisal Component.
    Thanks
    Vikas Bhatia

    Hi there,
    Function module 'HRHAP_DOCUMENT_GET_LIST' can be used for this purpose.
    In order to find the objects you want, make sure you set the appraisal templates for calling this function as well as all of the other required parameters. If you need help for the other parameters then let me know.
    The fields for the template table import parameter need to be set as follows:
    plvar = <b>Active plan version</b>
    otype = <b>VA or VB or VC</b>
    objid = <b>appraisal template id</b>
    This returns two tables - the appraisals and the associated documents.
    Other tables you may be interested in are :
    HRHAP_T
    HRHAP
    HRHAP_APPER
    HRHAP_APPEE
    Hope this helps you out. Any questions, let me know.
    If this works, please award the points for this advice.
    Cheers
    Colin.

  • Link to spry css broken in template or child pages

    Hi,
    on the following pages the spry menu is not displaying properly.  I did notice that in the template pages the link ref was missing ../ at the beginning.  Having added this and updated the templates and child pages (these were also uploaded to the server) I thought that would solve the problem.  But it doesn't look as though the change in the link ref has updated correctly.
    http://davidcoshdesign.com/nea/lighting_decorative.html
    http://davidcoshdesign.com/nea/lighting_functional.html
    http://davidcoshdesign.com/nea/news.html
    http://davidcoshdesign.com/nea/links.html
    http://davidcoshdesign.com/nea/blog.php
    Any pointers, would be great.
    Second url: 
    http://davidcoshdesign.com/nea/lighting_functional_wall.html
    This one appears not to be linking properly to the template?  At leats, I think that's the problem.  The template is in the correct folder and uploaded to the server.
    I have noticed on this site that when I make a new page based on any of the site templates, when I look at the coding in DW, there are references to the local site 'root' folder.
    Have I messed up the links to templates etc on site-wide basis?  Do I need to go into 'Manage Sites' to sort this out?

    No, just a reoccurring problem, for someone who constantly struggles witht the vagaries of html.
    RP

  • Print Report & Download CSV link missing in Custom SQL Report template

    Hi All,
    In Apex 3.1, I've been using the default templates till some color change issues forced me to create a custom one.
    The problem is my Download CSV and Print (excel,pdf) are gone in the new report. How would I reference them in report template to get those links back? (using # presuming)
    many thanks.
    APEX 3.1
    Edited by: AI on 15/04/2012 22:58

    SOLVED.
    The # thing is called substitution string. To make them show in your custom report use #CSV_LINK# In your Report Template.
    To shove it right, encapsulate it in DIV. <di v align=right>#CSV_LINK#</D IV>
    Edited by: AI on 15/04/2012 23:22

  • Using Update and Delete Links in QBE Reports with a Template

    QBE Reports in Portal allow Update and Delete links against Report output rows.
    When run, if I press the Update link it displays a simple form and utilises the Template I specified for the Report (as expected).
    If I press the Delete link it displays a page with a default Oracle template (including Navigator, Home and Help buttons I wish to suppress)
    How can I get the Delete to use the specified Template?
    Any simple fix appreciated.

    QBE Reports in Portal allow Update and Delete links against Report output rows.
    When run, if I press the Update link it displays a simple form and utilises the Template I specified for the Report (as expected).
    If I press the Delete link it displays a page with a default Oracle template (including Navigator, Home and Help buttons I wish to suppress)
    How can I get the Delete to use the specified Template?
    Any simple fix appreciated.

Maybe you are looking for