Results 1 to 8 of 8

Thread: When I add a form or fieldset/legend tags these are block elements and must be a spac

  1. #1
    Join Date
    Oct 2004
    Posts
    425
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default When I add a form or fieldset/legend tags these are block elements and must be a spac

    When I add a form or fieldset/legend tags these are block elements and must be a space(line) above/below them ?

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Please specify what you want in a better way. And then give your code so we can take a look at it.
    Jeremy | jfein.net

  3. #3
    Join Date
    Oct 2004
    Posts
    425
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    I see a space after :

    Code:
    <form action="https://www.paphoscarhire.com/php/europrocessor-prices-mysql3.php" method="post" enctype="application/x-www-form-urlencoded" name="form1" target="_self" id="form1">
              <fieldset>.......................</fieldset>
            </form>
    well this is normal ?

  4. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    The space is normal, you must give the fieldset a width.
    Jeremy | jfein.net

  5. #5
    Join Date
    Oct 2004
    Posts
    425
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    how do this ? may NOT do it and include a
    ...<fieldset><table width="500"> ..............</table></fieldset> ?

  6. #6
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    I'm not sure if I fully understand what you are asking, but I think what Nile was trying to say is to do this:


    Code:
    <form action="https://www.paphoscarhire.com/php/europrocessor-prices-mysql3.php" method="post" enctype="application/x-www-form-urlencoded" name="form1" target="_self" id="form1">
              <fieldset width="500px">.......................</fieldset>
            </form>
    Not This:
    Code:
    <fieldset><table width="500"> ..............</table></fieldset>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  7. #7
    Join Date
    Oct 2004
    Posts
    425
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    <fieldset> what attributes include ?

  8. #8
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    Sorry, my goof... The proper way would be using CSS. Like the two examples below:

    Code:
    <style type="text/css">
    fieldset{
    width:500px;
    }
    </style>
    OR you could just markup your code like this:
    Code:
    <fieldset style="width:500px;">....</fieldset>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •