Html =s

2K8 Group

New Member
Messages
90
Reaction score
0
Points
0
I can't get the fieldset to be in the middle, I have tried <div> and even <center> yet none of it works :dunno:

So heres the code:

HTML:
<html>
  <head>
    <title> 2K8 Group | Home Page </title>
    <style type="text/css">
      fieldset 
      { 
      clear: left; 
      float: left; 
      width: 500px; 
      display: block; 
      padding: 10px; 
      margin: 10px; 
      }
      body
      {
      font-size:17pt;
      font:Century Gothic;
      }
    </style>
  </head>
  <body>
    <fieldset>
      <legend align="center">Welcome!</legend>
      <?php
       echo "Welcome to 2K8 Group! We are a non-profit group helping people with their internet needs, we hope to create world clocks to games. You name it, we will try and come up with something!";
      ?>
    </fieldset>
  </body>
</html>

You can see the page: http://www.2k8.x10hosting.com
 
Last edited:

sonicsshadow

Member
Messages
200
Reaction score
0
Points
16
You could put a left margin on it so it appears center, but I don't know what exactly the problem is.
 

2K8 Group

New Member
Messages
90
Reaction score
0
Points
0
You see know it is on the left of page, I want it in the middle put I can't get it to work!
 

sonicsshadow

Member
Messages
200
Reaction score
0
Points
16
Code:
<html>
  <head>
    <title> 2K8 Group | Home Page </title>
    <style type="text/css">
      .center
      {
      text-align:center;
      }
      .center fieldset 
      { 
      clear: left; 
      float: left; 
      width: 500px; 
      display: block; 
      padding: 10px; 
      margin: 10px; 
      }
      body
      {
      font-size:17pt;
      font:Century Gothic;
      }
      .centerFieldset {
      text-align:center;
      }      
      .centerFieldset fieldset {
      display:inline;
      margin-left:auto;
      margin-right:auto;
      text-align:left;
}

-->
</style>
  </head>
  <body> 
<div class="centerFieldset">
    <fieldset>
      <legend align="center">Welcome!</legend>
      <?php
       echo "Welcome to 2K8 Group! We are a non-profit group helping people with their internet needs, we hope to create world clocks to games. You name it, we will try and come up with something!";
      ?>
    </fieldset>
    </div>
  </body>
</html>
http://www.web-wise-wizard.com/css-style-sheets/css-centering-tables-fieldsets.html
 

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
why are you using PHP to print something you could normally write?
 
Top