Remove the underline on hyper link and configure Submitbutton

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Remove the underline on hyper link and configure Submitbutton

    Hello,

    DW always put underline on hyper link. Is there any way on DW that I can take
    out the underline and replace it with color change when mouse is over, out and
    clicked?

    And for the submit button, how can I configure it to send the form when submit
    button is clicked?

    Thanks

    hypamw Guest

  2. Similar Questions and Discussions

    1. DRWM8: How to remove underline from Matched text?
      How to remove underline from Matched text in search result? Is there any extension to do so? Thanx a lot PEPP
    2. Hyper link a flash movie
      Hi, Is there any possibility that we can put a hyperlink on a flash movie just as we put on any gif or jpg image? Thanks,
    3. Hyper Link Problem
      Hi, I have a problem when creating hyper links. The problem is when I create a hyper link the link is splitting into 3 lines. I want the link...
    4. Fonts Remove Underline tags
      Ok, I feel dumb today, but I have the following code: <a href="../../../specials/freesemester.shtml"><font color="#FFFFFF" size="1"...
    5. Datagrid and hyper link question?
      Thank you Tim S. It was a help however i still couldn't figure out how to fix it? thanx "Tim S." <timstall@hotmail.com> wrote in message...
  3. #2

    Default Re: Remove the underline on hyper link and configureSubmit button

    Hi Hypamw:
    This from the Dreamweaver Help Menu:
    "To change the appearance of linked text to make it look like it isn?t a link:
    Open the Document window?s Code view by choosing View > Code.
    Find the link.
    In the link?s a href tag, insert this attribute: style="text-decoration:none;
    color:black".
    This attribute setting disables underlining and sets the color of the text to
    black. (Of course, if the surrounding text is a different color, use that color
    instead of black.)

    Note that this attribute is an inline CSS style. An inline style applied to a
    single link overrides other CSS styles that apply to that link, but has no
    effect outside of that link. To change the appearance of linked text everywhere
    on a page or across your entire site, use CSS styles to create a new style for
    links. For details, see Inserting and Formatting Text."

    As for the Code or Way to execute a submit button, I am learning that right
    now. Perhaps someone can enlighten us both on that one. I think you DO have to
    create a button that clicks and on the "click" some script tells it how to send
    the information to you like a link that you use for email. Get it? Anyways,
    happy learning and creating!

    Lisa :music;

    Lisa@Izotzaeche.com Guest

  4. #3

    Default Re: Remove the underline on hyper link and configure Submit button

    On 31 Mar 2005 in macromedia.dreamweaver.appdev, hypamw wrote:
    > DW always put underline on hyper link.
    No, it doesn't. That's the default behavior of User Agents (UAs - web
    browsers).
    > Is there any way on DW that I can take out the underline and replace
    > it with color change when mouse is over, out and clicked?
    CSS - it's discussed frequently in the group.
    > And for the submit button, how can I configure it to send the form
    > when submit button is clicked?
    Generally, you configure the form it's contained in:

    <form action="myscript.php" method="post" name="myform">
    <input name="mybutton" type="button" value="Click">
    </form>

    You can do this by clicking the <form> tag along the bottom of the design
    window and using the property inspector.

    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec 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