A Call for Extensions We'll Pay For

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default A Call for Extensions We'll Pay For

    I'll Start. How about an extension that will take CSS styles (internal or
    external) and place them inline with the HTML code wherever said style(s) are
    being referenced. This would be enormously helpful for coding HTML emails.

    If this already exists somewhere, please let me know.

    Energon3 Guest

  2. Similar Questions and Discussions

    1. extensions
      Hi, how does one use an extension once it is loaded? I see the "Manage Extensions" command but no clue is there on how to access it..
    2. how to use extensions
      Once I have downloaded an extension how to I use it, for instance I have list-o-rama. It is installed, but how do I use it now. Thank you Dee
    3. CFC Call Hanging on Second Call
      I run the flex application localy using the demo/dev server and do a search using a CFC, and then do another and its fine. But when my boss tries,...
    4. WSD Extensions
      Hi, does anyone have any knowledge of what WSDL extensions are and what they are used for??
    5. remote call procedure call failed
      Also, it says error 1726 "remote call procedure call failed" Help, Unable to save username and password in XP Home edition. It allows me to...
  3. #2

    Default Re: A Call for Extensions We'll Pay For

    Energon3 wrote:
    > I'll Start. How about an extension that will take CSS styles (internal or
    > external) and place them inline with the HTML code wherever said style(s) are
    > being referenced. This would be enormously helpful for coding HTML emails.
    >
    > If this already exists somewhere, please let me know.
    I've not seen such a beast. Have you tired creating the page with inline styles to begin with to avoid this issue? Or are you taking pre-made email templates and trying to make them work better?

    I can imagine that something like this could be quite a difficult beast to manage given all the various permutations of selectors that could be applied to a page.

    You may be able to run a set of find and replaces to make the changes you need such as:
    tr.even{
    background-color: #CCC;
    }

    You can do the following search:
    Current Document
    Search - Specific Tag: tr
    With Attribute: class = even
    Set attribute: style to: background-color: #CCC;

    Of course I realize that it may take a while to repeat these steps for every selector you have defined in your CSS file(s) even if they happen to be as specific as my example, hence your question. Unfortunately, most folks are looking to go the other way from inline to linked.

    FWIW: Google came up with the following page when I searched for "css convert linked to inline":
    [url]http://www.soldesignco.com/dev-csstoinline.php[/url]



    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

  4. #3

    Default Re: A Call for Extensions We'll Pay For

    Also consider using fully-qualified urls to reference your css style sheet.
    These days, most email will reach out and get that style sheet for your email.

    You can also include the css in the head of your email rather than replace
    with inline styles. There are a number of ways to accomplish this server side
    depending on how you are sending out the email.

    Neo719 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