Jump to content

kaitco

Members
  • Posts

    3
  • Joined

  • Last visited

About kaitco

  • Birthday 09/26/1984

Contact Methods

  • AIM
    kaitco1984
  • Website URL
    http://www.doriennesmith.com
  • ICQ
    0

Profile Information

  • Location
    Ohio
  • Interests
    Fashion, The X-Files and Calvin & Hobbes....the three could not be any more different and are all in harmony on my site.

kaitco's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Just use xml:lang. It is explained a little more here: http://www.w3.org/TR/xhtml11/changes.html
  2. Different users will having various settings depending on the browsers they use. It is always best to use relative measurements, in regards to font size, page widths, etc., that way your content will appear the way you want it to, but in relation to your visitors settings.
  3. Here is where your problem lies: <td width="40%" valign=top> <font size="2"> <ul class="outside"> <li>Individual and Corporate Real Estate Portfolios</li> <ul class="outside"> <li>Asset Management</li> <li>Property Value Enhancement</li> <li>Property Management</li> <li>Financial and/or Property Expense Analysis</li> </ul> </ul> </font> </td>In order to nest lists like you are trying to do, you have to nest the new list completely inside a <li> tag, likeso: <td width="40%" valign=top> <font size="2"> <ul class="outside"> <li>Individual and Corporate Real Estate Portfolios<!-- the </li> was removed --> <ul class="outside"> <li>Asset Management</li> <li>Property Value Enhancement</li> <li>Property Management</li> <li>Financial and/or Property Expense Analysis</li> </ul> </li><!-- and added here. Now the preceding list is now nested within one list item --> </ul> </font> </td> Note the position of the <li> tag. Your list, Assest Management etc. is nested within the list item Individual and Corporate etc.
×
×
  • Create New...