how to create macromedia's curved corners

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default how to create macromedia's curved corners

    after googling this slick idea, there are a bunch of websites that go various
    ways in creating the curved corners. most describe using tables to create the
    cells for the corners and then the center for the information. is there
    another way that's more concise, or effecient than creating numerous tables?
    div tags or something? if so do you know of a good tutorial for this?

    looking at macromedia's website and viewing the source doens't get me far
    seeing as i can't figure out which .css file they are calling for "pod" which i
    believe is the content for the tables.

    Anyone who has done this or knows how to do this, help would be much
    appreciated!

    ,Brodie

    mkyb14 Guest

  2. Similar Questions and Discussions

    1. Top Nav Bar like Macromedia's
      I would like to build a top nav bar just like the one on this site. When the user puts their mouse over the nav bar a secondary nav bar comes up...
    2. Trying to use the Macromedia's OBJ exporter
      Hi all, I am using Director MX 2004. I downloaded 3D Speedport xtra from Macromedia's web site. I installed the xtra, and the menu item labeled...
    3. how can i install macromedia's fileXtra?
      From director-online i got The fileXtra resides in the Save as Java directory in the Xtras folder. If you are using Director 8 you have to make...
    4. how to create curved dashed lines?
      How do you create a curved path or line that is dotted or dashed as in the line seen trailing the butterfly in the linked image. ...
    5. Macromedia's Cursor_Mask example?
      Does anyone know how to accomplish a traveling matte similar to when a circle mask follows the cursor and reveals the layer below. The best...
  3. #2

    Default Re: how to create macromedia's curved corners

    The corners are small images, positioned using CSS. You can see how they do
    this up close by using FILE | New | Page Designs (CSS) > any of the Halo
    layouts.

    Take a look at the images called "tl" and "tr", which are positioned at the
    corners of the pagecell1 div to form the corners.

    /***********************************************/
    /* Layout Divs */
    /***********************************************/
    #pagecell1{
    position:absolute;
    top: 112px;
    left: 2%;
    right: 2%;
    width:95.6%;
    background-color: #ffffff;
    }

    #tl {
    position:absolute;
    top: -1px;
    left: -1px;
    margin: 0px;
    padding: 0px;
    z-index: 100;
    }

    #tr {
    position:absolute;
    top: -1px;
    right: -1px;
    margin: 0px;
    padding: 0px;
    z-index: 100;
    }




    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "mkyb14" <webforumsuser@macromedia.com> wrote in message
    news:d8kn7n$stj$1@forums.macromedia.com...
    > after googling this slick idea, there are a bunch of websites that go
    > various
    > ways in creating the curved corners. most describe using tables to create
    > the
    > cells for the corners and then the center for the information. is there
    > another way that's more concise, or effecient than creating numerous
    > tables?
    > div tags or something? if so do you know of a good tutorial for this?
    >
    > looking at macromedia's website and viewing the source doens't get me far
    > seeing as i can't figure out which .css file they are calling for "pod"
    > which i
    > believe is the content for the tables.
    >
    > Anyone who has done this or knows how to do this, help would be much
    > appreciated!
    >
    > ,Brodie
    >

    Murray *TMM* Guest

  4. #3

    Default Re: how to create macromedia's curved corners

    yea i know that :) but i'm needing to know how they made the images so smooth.
    photoshop and fireworks isn't making them as smooth. i take it they used
    fireworks!

    also within dreamweaver i don't have any halo layouts...? is that in mx 2004
    and not the previous versions?

    mkyb14 Guest

  5. #4

    Default Re: how to create macromedia's curved corners

    > i take it they used
    > fireworks!
    I would hope so. Why not post in the FW forum and ask about smooth radius
    curves?
    > is that in mx 2004
    > and not the previous versions?
    That's right. Only MX2004....

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "mkyb14" <webforumsuser@macromedia.com> wrote in message
    news:d8nrpp$doi$1@forums.macromedia.com...
    > yea i know that :) but i'm needing to know how they made the images so
    > smooth.
    > photoshop and fireworks isn't making them as smooth. i take it they used
    > fireworks!
    >
    > also within dreamweaver i don't have any halo layouts...? is that in mx
    > 2004
    > and not the previous versions?
    >

    Murray *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139