html help

jmoney3457jmoney3457 Maine
edited October 2007 in Internet & Media
just simple html ?...i'm trying to get the yellow CPT 105 box to move up in portion next to 1:30 anyone tell me which part of code to alter? i can't figure it out http://ctech.smccme.edu/~frauttenj/classwk/tables/schedule.html

Comments

  • jmoney3457jmoney3457 Maine
    edited October 2007
    thanks to thrax (thanks again man!:bigggrin:) i solved it but new question now arises if you look at my HTML code..none of the tags indicate for text to be bold yet all of it is..me & thrax were wondering why? anyone know?
  • KentigernKentigern Milton Keynes UK
    edited October 2007
    Using the tag th = boldface usually centered. Try just using the td tag for plain text in your cells. :)
    Also within row 5 you have used th (as above) - td tag with b tag - then th tag

    [PHP]<!
    row5
    >

    <tr>
    <th class=red> 1:30</th>
    <td></td>
    <th rowspan=2 class=blue> CPT-101 </th>
    <td rowspan=5 class=blue><b>CPT 105</b></td>
    <th rowspan=2 class=blue> CPT-101 </th>


    </tr>[/PHP]
  • jmoney3457jmoney3457 Maine
    edited October 2007
    Kentigern wrote:
    Using the tag th = boldface usually centered. Try just using the td tag for plain text in your cells. :)
    Also within row 5 you have used th (as above) - td tag with b tag - then th tag

    [PHP]<!
    row5
    >

    <tr>
    <th class=red> 1:30</th>
    <td></td>
    <th rowspan=2 class=blue> CPT-101 </th>
    <td rowspan=5 class=blue><b>CPT 105</b></td>
    <th rowspan=2 class=blue> CPT-101 </th>


    </tr>[/PHP]
    ohhhhhhhhh ok thanks for shedding some light on that ken makes complete sense now:D
Sign In or Register to comment.