Results 1 to 3 of 3

Thread: I Need Some Help

  1. #1
    Join Date
    Jul 2005
    Location
    cali
    Posts
    95
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation I Need Some Help

    Ok, anyone out their experienced with tables, take a look at my site, i have a few questions.

    My site

    .:First:. How can i move the light green up to be even...
    .:Second:. Is it possible for me to do all of this in one table and not 2.
    .:Third:. How can i add text to the light green without it enlarging the width.

    I wish the final design of the side to be similar to this

    Cr3ative's site

    Can anyone simplify this for me....

    Thank You in Advance.

  2. #2
    Join Date
    Jul 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    First off, let me point you to a great resource for learning HTML and its associated technologies.

    W3Schools
    http://www.w3schools.com/

    .:First:. How can i move the light green up to be even...
    At the end of your first table you have a <tr> with no <td> in it. Delete that.

    .:Second:. Is it possible for me to do all of this in one table and not 2.
    Yes. Add the attribute colspan="2" to the <td> tags in your first table, then
    remove the first </table> and the 2nd <table> tags.

    .:Third:. How can i add text to the light green without it enlarging the width.
    Put your text inside a <span> tag like this:
    <span style="width:100;height:100%;overflow:scroll">someveryverylongassstringtoshowtheoverflowconditionandtestit</span>

    Allowable values for overflow are visible, hidden, scroll and auto
    http://www.w3schools.com/css/pr_pos_overflow.asp

    Good luck

    Iz

  3. #3
    Join Date
    Jul 2005
    Location
    cali
    Posts
    95
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Ok, thankz, dont normally use tables =P

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
  •