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

  1. #1

    Default How do I explain?

    Hi there,

    I need to explain to my client certain basics about what she needs to edit
    within the HTML of a template I have created for her. I'm a bit of a HTML
    newbie, and I notice that within some HTML, there is light grey text surrounded
    by a bracket such as the following:

    <!-- /// CSS goes here in case the /HEAD tags get stripped \\\ -->

    Is the above just explanatory text from the coder or does it serve a deeper
    purpose? Had a thought that this may be something to do with javascript but a
    bit confused.... Can I write whatever I want within these sorts of brackets
    without affecting the layout of the page? If so, can I make statements that
    may include particular tags such as <p> and </p> within these <!--/// brackets
    without causing a ruckus on the page?

    I'd appreciate any help.
    Thanks
    Nicholas


    Nicholas M Guest

  2. Similar Questions and Discussions

    1. Can anyone explain this to me?
      Been trying to insert a record from A repeated region but keep hitting this particular brick wall. create the MM_fields and MM_columns arrays...
    2. Ann please explain this.
      Again a question about the difference viewing flattened and not flattened images. Let me explain. I have an RGB image 35" x 44" at 360 dpi around...
    3. Please Explain
      Hi I am trying to save (read / change / write) windows XP taskbar registry values. Like show clock, always on top and same for desktop setting ...
    4. Can Someone Explain (No Pun Intended) this Explain Plan Output ?
      We're running DB2 v7.1 on OS/390. The DBA guys gave us a macro to generate an explain plan against a query that is stored in a PDS member. The...
    5. can someone explain...
      this difference bewteen A and B below? A) $a = &new className(true, 6); B) $a = new className(true, 6); /* missing & on the NEW */ ...
  3. #2

    Default Re: How do I explain?

    Yes, those comments are just that, comments.
    However, there are times that you can create conditional comments such as
    <!--[If IE 5x]> where you can use tags and those do effect the page.

    As long as you use the /// bewteen your comments, you should be fine; but to
    be safe you could just leave out the <> and just use p tag, /p tag.

    You could also experiment and check a few different browsers (FF, Opera and
    IE) to make sure nothing quirky is happening.

    dwebber Guest

  4. #3

    Default Re: How do I explain?

    That's great thanks.
    Appreciate your help!
    Nicholas M Guest

  5. #4

    Default Re: How do I explain?

    One last question (for the night anyway :moon)
    I've come across this is an article about css styling:
    /*float the main list items*/
    Does this apply as well - ie is this just a comment or is this something else?
    Thanks
    Nicholas

    Nicholas M Guest

  6. #5

    Default Re: How do I explain?

    That is how you write comments in your cascading style sheet.
    dwebber 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