Emailing HTML content

Hi,
I want to open the default mail client with the HTML content when I click on the button from the form.
I tried MailTo: function but in vain.Is there any other way to do it.
Please help me out.

In mailto URLs, you can specify values for (some) headers as query parameters, such as Content-Type. An example for HTML would be:
Link
If the client does not support HTML composition, this will not work. Likewise, if the client does not support setting the Content-type header, it will not work.
If you want any real control over an email message, you will have to send it from your side. You might find the Mailer Tag Library useful:
http://jakarta.apache.org/taglibs/doc/mailer-doc/intro.html

Similar Messages

  • HTML Content in Email Notifications

    Hi
    I was wondering if HTML content is supported in BPM Email notifications. The html code in the BPM UI task email notification is coming as plain HTML in the email, can you please let me know if there is any flag that needs to be turned on to process the HTML code before the email is sent out?
    Thanks
    Sasi

    i think standard notification doesn't support this.

  • Fetching Dynamic email address from the HTML content sent in the email body

    Hi All,
    I have a scenario where in i have to send an html content via an email body . while doing so , i need to fetch the email address from the html content and send a mail to the specified email adrress in the html content .
    How to fetch the email address from the html content.
    Regards
    Vinay P.

    Hi ,
    Dynamic configuration means ...do i need to come up with a mapping which contains the  To,From,Subject fields & all...so that when i click on the mail package in mail adapter ...this  "To" email id will be fetched dynamically
    Regards
    Vinay P

  • HTML content in Email from ALSB 2.6

    HI, I am trying to send an email consistig of HTML content from ALSB 2.6.
    I have set the Content-Type to 'text/HTML' and made the following assignment to $body:
    <soap-env:Body>
    <HTML>
    <HEAD>
    </HEAD>
    <BODY>
         <H2><center>Error in {fn:string($body/notificationmessage/servicename)} Service for Operation - {fn:string($body/notificationmessage/operationname)}</center></H2>
    <p>For more details please see the logs at {fn:concat(fn:string($logfileDetails/rootlocation),fn:string($body/notificationmessage/logfilepath))}</p>
    <H2>Following is the Error Message from {fn:string($body/notificationmessage/operationname)} Operation</H2>
    <p>{$body/notificationmessage/faultmessage}</p>
    </BODY>
    </HTML>
    </soap-env:Body>
    But the message I receive is
    <?xml version="1.0" encoding="utf-8"?>
    <HTML><HEAD/><BODY><H2><center>Error in PreScreen-SFDC Service for Operation - UpdateLead</center></H2><p>For more details please see the logs at D:/SampleLogs/PreScreen-SFDC/2010/7/23/690b14f2-9a2d-41c4-8869-0d52e6cc4668_00QQ0000003wJ2bMAE_UpdateLead.log</p><H2>Following is the Error Message from UpdateLead Operation</H2><p><faultmessage><con:fault xmlns:con="http://www.bea.com/wli/sb/context"><con:errorCode>BEA-382505</con:errorCode><con:reason>ALSB Validate action failed validation</con:reason><con:details><con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config"> </con1:ValidationFailureDetail></con:details><con:location><con:node>PipelinePairNode1</con:node><con:pipeline>PipelinePairNode1_request</con:pipeline><con:stage>Validate Request</con:stage><con:path>request-pipeline</con:path></con:location></con:fault></faultmessage></p></BODY></HTML>
    Can anybody please help?

    Cant figure out what is the issue from your description. Can you explain what is the problem?

  • HTML content with images and links blocked

    Hello,
    I very much need some help here because my company needs to send out newsletters to our clients in HTML format soon and so far the email with HTML content is being blocked as spam while text content works fine. Specifically, whenever I add a link or an image in HTML content, the email doesn't go through. I tried sending in multipart format but it is also not sending HTML with images and links. Here is my attempt:
                                    props.setProperty("mail.transport.protocol", "smtp");
                                     props.setProperty("mail.host", "mail.server.com");
                                     props.setProperty("mail.user", "joeuser");
                                     Session mailSession = Session.getDefaultInstance(props, null);
                                     mailSession.setDebug(true);
                                     Transport transport = mailSession.getTransport();
                                     MimeMultipart mp = new MimeMultipart("alternative");
                                     MimeBodyPart htmlPart = new MimeBodyPart();
                                     MimeBodyPart textPart = new MimeBodyPart();
                                     textPart.setText("Just to make it multipart");
                                     htmlPart.setHeader("MIME-Version", "1.0");
                                     htmlPart.setHeader("Content-Type", htmlPart.getContentType());
                                     htmlPart.setContent(strHtmlMessage, "text/html");
                                     mp.addBodyPart(textPart);
                                     mp.addBodyPart(htmlPart);
                                     MimeMessage message = new MimeMessage(mailSession);
                                     message.setHeader("MIME-Version", "1.0");
                                     message.setHeader("Content-Type", mp.getContentType());
                                     message.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");
                                     message.setContent(mp);
                                     message.setSubject(strSubject);
                                     message.setFrom(new InternetAddress("[email protected]"));
                                     message.addRecipient(Message.RecipientType.TO,
                                             new InternetAddress("[email protected]"));
                                             transport.connect();
                                             transport.sendMessage(message,
                                             message.getRecipients(Message.RecipientType.TO));
                                     transport.close();This code is one of my numerous attempts to make HTML send images and links. Please, let me know if there is a workaround way to make JavaMail send HTML with links and images in the message body. Your help will be greatly appreciated.

    The JavaMail FAQ has information on creating HTML messages, including
    messages with both plain text and HTML. Did you find it?
    BTW, your code has many unnecessary statements, such as setting
    the Mime-Version header, which JavaMail will do for you, and setting
    the Content-Type header, which JavaMail does as a side-effect of the
    setContent or setText calls.
    Other than that, it looks like your code should be correctly creating a
    multipart/alternative message. If the recipient is still rejecting it you
    need to figure out what it is about the message that makes the recipient
    think it's spam. Can you send a similar message using another mailer?
    Can you send the message to a different recipient?

  • Not able to Send HTML Content in Apex Mail

    Hi,
    I am using Oracle Apex 4.2 and Oracle 11g XE
    I am trying to add HTML content in the apex_send mail procedure. But it give me the below error.
    >>•ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275
    Below is the code i am trying to add in the apex_send mail
    DECLARE
    l_from varchar2(1000);
    l_body CLOB;
    l_body_html CLOB;
    BEGIN
    l_body := null;
    l_body_html := '
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta property="og:title" content="Seasons Greetings from sudhir Networks" />
    <title>Seasons Greetings from sudhir Networks</title>
    <style type="text/css">
    /* Client-specific Styles */
    #outlook a{padding:0;} /* Force Outlook to provide a "view in browser" button. */
    body{width:100% !important;} .ReadMsgBody{width:100%;} .ExternalClass{width:100%;} /* Force Hotmail to display emails at full width */
    body{-webkit-text-size-adjust:none;} /* Prevent Webkit platforms from changing default text sizes. */
    /* Reset Styles */
    body{margin:0; padding:0;}
    img{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}
    table td{border-collapse:collapse;}
    #backgroundTable{height:100% !important; margin:0; padding:0; width:100% !important;}
    body, #backgroundTable{
    /*@editable*/ background-color:#FAFAFA;
    #templateContainer{
    /*@editable*/ border: 1px solid #DDDDDD;
    h1, .h1{
    /*@editable*/ color:#202020;
    display:block;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:34px;
    /*@editable*/ font-weight:bold;
    /*@editable*/ line-height:100%;
    margin-top:0;
    margin-right:0;
    margin-bottom:10px;
    margin-left:0;
    /*@editable*/ text-align:left;
    h2, .h2{
    /*@editable*/ color:#202020;
    display:block;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:30px;
    /*@editable*/ font-weight:bold;
    /*@editable*/ line-height:100%;
    margin-top:0;
    margin-right:0;
    margin-bottom:10px;
    margin-left:0;
    /*@editable*/ text-align:left;
    h3, .h3{
    /*@editable*/ color:#202020;
    display:block;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:26px;
    /*@editable*/ font-weight:bold;
    /*@editable*/ line-height:100%;
    margin-top:0;
    margin-right:0;
    margin-bottom:10px;
    margin-left:0;
    /*@editable*/ text-align:left;
    h4, .h4{
    /*@editable*/ color:#202020;
    display:block;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:22px;
    /*@editable*/ font-weight:bold;
    /*@editable*/ line-height:100%;
    margin-top:0;
    margin-right:0;
    margin-bottom:10px;
    margin-left:0;
    /*@editable*/ text-align:left;
    #templatePreheader{
    /*@editable*/ background-color:#FAFAFA;
    .preheaderContent div{
    /*@editable*/ color:#505050;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:10px;
    /*@editable*/ line-height:100%;
    /*@editable*/ text-align:left;
    .preheaderContent div a:link, .preheaderContent div a:visited, /* Yahoo! Mail Override */ .preheaderContent div a .yshortcuts /* Yahoo! Mail Override */{
    /*@editable*/ color:#336699;
    /*@editable*/ font-weight:normal;
    /*@editable*/ text-decoration:underline;
    #templateHeader{
    /*@editable*/ background-color:#FFFFFF;
    /*@editable*/ border-bottom:0;
    .headerContent{
    /*@editable*/ color:#202020;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:34px;
    /*@editable*/ font-weight:bold;
    /*@editable*/ line-height:100%;
    /*@editable*/ padding:0;
    /*@editable*/ text-align:center;
    /*@editable*/ vertical-align:middle;
    .headerContent a:link, .headerContent a:visited, /* Yahoo! Mail Override */ .headerContent a .yshortcuts /* Yahoo! Mail Override */{
    /*@editable*/ color:#336699;
    /*@editable*/ font-weight:normal;
    /*@editable*/ text-decoration:underline;
    #headerImage{
    height:auto;
    max-width:600px;
    #templateContainer, .bodyContent{
    /*@editable*/ background-color:#FFFFFF;
    .bodyContent div{
    /*@editable*/ color:#505050;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:14px;
    /*@editable*/ line-height:150%;
    /*@editable*/ text-align:left;
    .bodyContent div a:link, .bodyContent div a:visited, /* Yahoo! Mail Override */ .bodyContent div a .yshortcuts /* Yahoo! Mail Override */{
    /*@editable*/ color:#336699;
    /*@editable*/ font-weight:normal;
    /*@editable*/ text-decoration:underline;
    .bodyContent img{
    display:inline;
    height:auto;
    #templateFooter{
    /*@editable*/ background-color:#FFFFFF;
    /*@editable*/ border-top:0;
    .footerContent div{
    /*@editable*/ color:#707070;
    /*@editable*/ font-family:Arial;
    /*@editable*/ font-size:12px;
    /*@editable*/ line-height:125%;
    /*@editable*/ text-align:left;
    .footerContent div a:link, .footerContent div a:visited, /* Yahoo! Mail Override */ .footerContent div a .yshortcuts /* Yahoo! Mail Override */{
    /*@editable*/ color:#336699;
    /*@editable*/ font-weight:normal;
    /*@editable*/ text-decoration:underline;
    .footerContent img{
    display:inline;
    #social{
    /*@editable*/ background-color:#FAFAFA;
    /*@editable*/ border:0;
    #social div{
    /*@editable*/ text-align:center;
    #utility{
    /*@editable*/ background-color:#FFFFFF;
    /*@editable*/ border:0;
    #utility div{
    /*@editable*/ text-align:center;
    #monkeyRewards img{
    max-width:190px;
    </style>
    </head>
    <body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
    <center>
    <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="backgroundTable">
    <tr>
    <td align="center" valign="top">
    <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateContainer">
    <tr>
    <td align="center" valign="top">
    <!-- // Begin Template Header \\ -->
    <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateHeader">
    <tr>
    <td class="headerContent">
    <img src="http://www.sudhirnetworks.com/i/logo/sudhir-logo.png" style="max-width:600px; padding-top: 20px;" id="headerImage campaign-icon" mc:label="header_image" mc:edit="header_image" mc:allowdesigner mc:allowtext />
    </td>
    </tr>
    </table>
    <!-- // End Template Header \\ -->
    </td>
    </tr>
    <tr>
    <td align="center" valign="top">
    <!-- // Begin Template Body \\ -->
    <table border="0" cellpadding="0" cellspacing="0" width="600" id="templateBody">
    <tr>
    <td valign="top" class="bodyContent">
    <!-- // Begin Module: Standard Postcard Content \\ -->
    <table border="0" cellpadding="20" cellspacing="0" width="100%">
    <tr mc:repeatable>
    <td valign="top">
    <img src="http://www1.sudhirnetworks.com/ecard/sudhir_holidaycard_clickhere.jpg" style="width:560px;" mc:label="postcard_image" mc:edit="postcard_image" mc:allowtext />
    <div mc:edit="std_content00">
    <strong>Custom Message</strong> goes here.
    </div>
    </td>
    </tr>
    </table>
    <!-- // End Module: Standard Postcard Content \\ -->
    </td>
    </tr>
    </table>
    <!-- // End Template Body \\ -->
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </center>
    </body>
    </html>
    l_from := lower(:app_user) || lower('@sudhirnetworks.com');
    apex_mail.send(
    p_to => :P1_TO,
    p_from => l_from,
    p_body => l_body,
    p_body_html => L_BODY_HTML,
    p_subj => :P1_SUBJECT);
    APEX_MAIL.PUSH_QUEUE;
    END;
    Please suggest me how to fix this issue.
    Thanks
    Sudhir

    What happens if the user isn't reading the message in a HTML enabled mail client?
    Besides, even if you don't want to send an equivelant message in plain text, at least say something like 'Please open the message in an HTML enabled mail client'.
    It is a required field, so requires some value (not null).
    From the docs:
    Plain text and HTML email content. Passing a value to p_body, but not p_body_html results in a plain text message. Passing a value to p_body and p_body_html yields a multi-part message that includes both plain text and HTML content. The settings and capabilities of the recipient's email client determine what displays. Although most modern email clients can read an HTML formatted email, remember that some users disable this functionality to address security issues.

  • How to feed html content in Mail App from Indesign

    Anyone knows how Martha Stewart Everday Food Magzine achieved launching the ipad Mail App filled in with HTML body content directly from their digital magazine?
    At the end of each recipe, there is an email icon displayed, and when you click on it ipad mail launches with html content filled in and ready to share with a friend.
    Please help
    Stanly

    Please refer to this, "Scenario eMail/a: Share your article text as eMail"
    http://digitalpublishing.tumblr.com/tagged/Working_in_InDesign
    Hope it helps.
    shimoawazu

  • Sending HTML content in body for emailnotification in OSB

    hi,
    i have done an emailnotification service in OSB..
    currently HTML content in body is not supported in OSB..
    how to send the html content as body for an email..
    please provide a solution at the earlist..
    thanks

    how to send the html content as body for an emailSimply as you send a XML. Post OSB related queries in SOA suite forum -
    SOA Suite
    Regards,
    Anuj

  • Send html content in notification body

    Hi, I am trying to make the body of my mail as html. But an empty mail is getting sent. The code is,
    <copy>
    <from expression="ora:processXSLT('Transformation_1.xsl',bpws:getVariableData('inputVariable','payload','/ns2:ORDER'))"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns3:Content/ns3:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns3:Content/ns3:MimeType"/>
    </copy>
    The xsl has the code:
    <xsl:template match="/">
    <ns0:ORDER>
    <xsl:attribute name="ErrState">
    <xsl:value-of select="/ns0:ORDER/@ErrState"/>
    </xsl:attribute>
    </ns0:ORDER>
    </xsl:template>
    I can see the ContentBody variable in the AuditTrail with the processed value. but in mail I am not getting anything.
    Please help me on this

    What happens if the user isn't reading the message in a HTML enabled mail client?
    Besides, even if you don't want to send an equivelant message in plain text, at least say something like 'Please open the message in an HTML enabled mail client'.
    It is a required field, so requires some value (not null).
    From the docs:
    Plain text and HTML email content. Passing a value to p_body, but not p_body_html results in a plain text message. Passing a value to p_body and p_body_html yields a multi-part message that includes both plain text and HTML content. The settings and capabilities of the recipient's email client determine what displays. Although most modern email clients can read an HTML formatted email, remember that some users disable this functionality to address security issues.

  • Showing HTML content in jspx page

    Hi,
    We have stored text/html email messages in database and we want to display this on our page.
    I tried with af:richTextEditor its not showing actual space & font. Few extra line breaks are added.
    I tried af:outputText with escape=false it looks perfect. But all the menu items, command links, tab header label are started showing underlines and the UI looks odd. When I check the documentation it says
    "In addition, nearly all attributes are ignored when "escape" is set to false"
    I believe this is the reason the UI is showing odd.
    All I need is just to show a html content inside a panelGroupLayout. Any suggestions?
    Thiru

    Hi,
    here's what I think works best:
    1. add an ADF Faces inlineFrame component to the page
    2. Have the inlineFrame source property pointing to a servlet that reads and streams the HTML from the database as an HTML document
    Frank

  • HTML  Content in an E-mail message

    Hello!
    I wanted to know as to how html content could be sent as part of an email message..Someone please help me with this because this is very crucial.Thank u
    Regards,
    Chaitra

    I used msg.setContent(message,"text/html") and it works fine as long as the total no. of characters in the message is less than 1024. As soon as the character size goes over 1024, I get this message in the mail instead of the HTML mail -
    "This message uses a character set that is not supported by the Internet Service. To view the original message content, open the attached message. If the text doesn't display correctly, save the attachment to disk, and then open it using a viewer that can display the original character set."

  • Getting the html content before browser displays it

    Hi,
    I have a nagging problem which i am trying hard to solve.
    I have a jsp file which gets hundreds of rows from database. I want to capture the html content before the browser displays that. How can I achieve it. ?
    Please tell us the solution as soon as possible. we have stopped the work.
    Thanks & Regards,
    A S N Murthy
    [email protected]
    [email protected]

    Hi !
    continuing with my previous mail...
    Is it okay with you if you use save the Data to be rendered in an XML ? (if you just need all the data).
    You've written you will have "hundreds of rows from database".
    In case you think of saving the data in an XML format, you can have all that data in a structured manner on the server side. And later you could use the XML file in any way you want. i.e. convert it into an html using xalan, etc. or use the XML file to access the data instead of a DB transaction all over again...
    I guess this might be a better approach than saving the HTML that will be generated by the JSP.
    Anyway, it depends on your requirement.
    regards,
    Rahul C Tiwary

  • Post BLOB image in an html content

    I have a HTML content which will go as a body of the email to be sent to various users.
    Now in the email, somewhere there is a tag
    <img src="[IMG]"/>
    We need to replace the [IMG] with the image link store in the database column, so that the email receiver can see the image there.
    Any help
    Thanks
    Deb

    Hi Tony
    I am using something like this
    <img src="WRT.DISPLAY_TEMPLATE_IMAGE?inid=189" width="100%" border="0" >
    where DISPLAY_TEMPLATE_IMAGE is a procedure with the following code
    create or replace
    PROCEDURE display_template_image (inid NUMBER)
    AS
    vmime VARCHAR2 (48);
    vlength NUMBER;
    vfilename VARCHAR2 (2000);
    vblob BLOB;
    BEGIN
    SELECT ctl_image_mime_type
    , ctl_image
    , ctl_image_filename
    , DBMS_LOB.getlength (ctl_image)
    INTO vmime
    , vblob
    , vfilename
    , vlength
    FROM contact_templates
    WHERE ctl_id = inid;
    OWA_UTIL.mime_header (NVL (vmime, 'application/octet'), FALSE);
    HTP.p ('Content-length: ' || vlength);
    OWA_UTIL.http_header_close;
    WPG_DOCLOAD.download_file (vblob);
    END;
    The above procedure works fine when I use it in a IR report query. but not in a HTML script.
    Thanks
    Debraj

  • Trouble with email HTML

    Hello,
    I have never really done email HTML but I am having a go a putting together an email signature for someone.
    Here it is: martcol.co.uk/email-sig-rosie.html
    I can't work out how to compress the space between the lines and would appreciate a nudge.
    Thanks
    Martin

    Setting a height on your table won't help - height="186"
    Not done one of these in a while but this would be my take on it:
    <table cellspacing="0" cellpadding="0" border="0" style="width: 438px; border: #AD208E solid 4px; color: #AD208E; font-family: arial, helvetica, sans-serif; background-color: #FFFFFF; font-size: 13px;">
    <tr>
    <td width="118"><a href="http://www.girlfridaygraphics.co.uk/contact/" ><img alt="Girl Friday Graphics Logo" width="118" height="97" src="http://www.martcol.co.uk/gfweblogo.gif" /></a></td>
    <td width="320">
    <table width="100%"cellspacing="0" cellpadding="0" border="0">
    <tr>
    <td style="text-align: right; color:#AD208E; font-weight: bold;">Designer:</td>
    <td style="padding: 3px 3px; color: #000000">Rosie Harris</td>
    </tr>
    <tr>
    <td style="text-align: right; color: #AD208E; font-weight: bold;">Email:</td>
    <td style="padding: 3px 3px; color: #000000">[email protected]</td>
    </tr>
    <tr>
    <td style="text-align: right; color: #AD208E; font-weight: bold;">Mobile:</td>
    <td style="padding: 3px 3px; color: #000000">07879 634666</td>
    </tr>
    <tr>
    <td style="text-align: right; color: #AD208E; font-weight: bold;">Telephone:</td>
    <td style="padding: 3px 3px; color: #000000">01892 532417</td>
    </tr>
    <tr>
    <td style="text-align: right; color: #AD208E; font-weight: bold;">Social:</td>
    <td style="paddin: 3px 3px; color: #000000"><a href="https://twitter.com/girlfrigraphics" style="color: #000000; text-decoration: none !important;" ><img alt="twitter logo" style="padding-right: 5px" src="http://brightontherapyservice.co.uk/wp-content/uploads/2013/12/twitter-2.png" /></a>
      <a href="http://uk.linkedin.com/pub/michele-karban/39/5b5/4a3"><img alt="linked in logo" src="http://brightontherapyservice.co.uk/wp-content/uploads/2013/12/linkedin.png" /></a></td>
    </tr>
    <tr>
    <td style="text-align: right; color: #AD208E; font-weight: bold;">Web:</td>
    <td style="padding: 3px 3px; color: #000000"><a style="color: #000000;" href="http://www.girlfridaygraphics.co.uk"><span style="color: #000000; text-decoration: none;">Girl Friday Graphics</span></a></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

  • Flash Menu, HTML content and Z-index

    I have a flash menu that needs to overlap HTML content. I have already done this by using a negative margin on the HTML content and setting the flash menu to transparent.
    The problem is all the HTML links that are 'underneath' the Flash menu do not function. I tried changing the Z-index but that did not work because then the menu goes behind the text. Are there any other solutions?
    Thanks.

    "robot88888888" <[email protected]> wrote...
    > You may want to look at this:
    >
    http://meyerweb.com/eric/css/edge/menus/demo.html
    >
    > You may want to stay away from pure CSS menus until
    there is better
    > browser support. Or if you prefer to use the menus you
    have, you
    > should consider making the top-level links go to a page
    which allows
    > vistors to click on your other links. For example, if
    you click the
    > Calendar option, it should bring you to a page which has
    links to the
    > Jan., Feb., etc. pages.
    >
    > Right now neither of your drop-down menu structures work
    in IE6 for
    > Windows...which I would assume is your primary audience.
    Well, there's always a way to make so-called "pure" CSS menus
    a bit
    cleaner :-)
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Al Sparber
    PVII
    http://www.projectseven.com
    "Designing with CSS is sometimes like barreling down a
    crumbling
    mountain road at 90 miles per hour secure in the knowledge
    that repairs
    are scheduled for next Tuesday".

Maybe you are looking for

  • Logic 9.17, Mountain Lion, and Alesis MultiMix 16 Firewire compatibility?

    Does anybody know if the Alesis MultiMix 16 fire wire audio interface/mixer works with Mountain Lion and Logic 9.17 ?  Any info would be helpful. Thank You

  • 802.1x, AD Authentication vs Local login

    Hello, I'm working to implement 802.1x on my LAN, using ACS 4.2 as my authentication server. I've gotten my ACS server to successfully authorize users / PCs to AD without issue. The problem I'm having is if a user uses a local-logon to the PC. Say a

  • Out put crosses the width list

    Hi, i am concatenating some text with user input company codes, i declared LINE-SIZE is 132. suppose if user inputs 200 company codes,it crosses the width of report output list,but it is not displaying in second line also.why it is happening,what is

  • Hiding values in ALV Grid

    Hi all,         I need to hide values of one particular field in ALV Grid.But I need only subtotal of the hidden values. Is there any option in ALV Grid. For Example. it_final-menge 100 125 175 200 400 400 is the subtotal value.Values 100,125,175,200

  • No video after Flash 8 Video Encoder

    I have read some other posts and although they are similar, none of the solutions posted helps me fix my specific issue. Using Flash 8 on Windows XP Pro SP2, I have a MPEG-2 file. I can play the MPEG file using Windows Media Player 11 and RealPlayer