Web Analytics Made Easy -
StatCounter how do I space my links? - CodingForum

Announcement

Collapse
No announcement yet.

how do I space my links?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how do I space my links?

    i want to space my links apart further but how can i do that?

    ihttp://www20.brinkster.com/hybr1dz03...ledFrame-2.htm

    http://www20.brinkster.com/hybr1dz03...Frameset-5.htm




  • #2
    There are sveral ways to do this. One simple way (not saying the best way ) is to use the nonbreaking space special character & n b s p ; (same as & # 1 6 0 ;). Just put as many of those between each linl as you need until you get the desired spacing .

    PS: Remove all the spaces though, I only added them here to keep the area where I entered th character code from showing up as empty space. One other way would be to place a 1px high transparent gif between each link with the width set to the amount of space you'd like between the links.
    Last edited by boxer_1; Jun 24, 2002, 08:31 PM.
    boxer_1
    CodingForum Moderator
    "How did a fool and his money get together in the first place?"

    Comment


    • #3
      You can experiment with the margin properties in CSS as well, and even padding to an extent.

      And boxer, you mean  ?
        is a way to make entities display...
      jasonkarldavis.com

      Comment


      • #4
        Originally posted by jkd
        ......And boxer, you mean  ?
          is a way to make entities display...
        Thanks jkd, hadn't even given that workaround a thought to display   without having to use the spaces . *Brain cramp*...lol.
        boxer_1
        CodingForum Moderator
        "How did a fool and his money get together in the first place?"

        Comment


        • #5
          why not put them in a table and then have no border and cellpadding set

          ie

          <table border="0" cellpadding="10">
          <tr>
          <td>FIRST LINK HERE</td>
          <td>SECOND LINK HERE</td>
          </tr>
          </table>

          wabirdman
          www.myspace.com/lostsaintsrocks

          Comment


          • #6
            thanks for helping me out guys

            Comment

            Working...
            X