Results 1 to 10 of 10

Thread: HTML Beginner

  1. #1

    Thread Starter
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748

    Question HTML Beginner

    I have this link here in a column, how do I not have the link underline under data_Sequence?

    Code:
    <td nowrap><p class="#data_LinkClass#" #data_LinkDisabled#="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend', '#data_PrepaymentRequestID#')">#data_PrepaymentRequestID# #data_Sequence#</p>

  2. #2
    scoutt
    Guest
    because it is not in a <a href> tag.

  3. #3

    Thread Starter
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748
    So, err, where does this <a href> tag go?

    This is what it looks like...

    I just want the underline to stop before the "01".
    Attached Images Attached Images  

  4. #4
    kayoca
    Guest
    If you want to use an underline you can use the U tag like this
    Code:
    <u>1</u>&nbsp;01
    Or if you need a link. you can do it like this
    Code:
    <a href="http://www.vbdungeon.net">1</a>&nbsp;01

  5. #5
    scoutt
    Guest
    Originally posted by Bonker Gudd
    So, err, where does this <a href> tag go?

    This is what it looks like...

    I just want the underline to stop before the "01".
    so what is producing the 1 and 01?
    just a guess since I never seen that many # signs in one sentence
    Code:
    <td nowrap><p class="#data_LinkClass#" <a href="#" #data_LinkDisabled#="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend', '#data_PrepaymentRequestID#')">#data_PrepaymentRequestID#</a> #data_Sequence#</p>

  6. #6

    Thread Starter
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748
    The stuff between the #'s gets replaced by my WebClass, here's the actual HTML:
    Code:
    <td nowrap>
    <p class="DummyLink" onClick="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend','1')">1 01</p>
    </td>

  7. #7
    scoutt
    Guest
    well I was close.
    Code:
    <td nowrap>
    <p class="DummyLink" onClick="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend','1')">1 </p>01
    </td>
    don't need the href tag just put the 01 outside the closing </p>

    sorry I was think you need something else.

  8. #8

    Thread Starter
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748
    Originally posted by scoutt don't need the href tag just put the 01 outside the closing[/B]
    That does it, but it wraps the 01 down onto the next line, I don't want that

  9. #9
    scoutt
    Guest
    that is because you are using the <p> tage which is a paragraph break, which is the same as 2 <br> together.

    you might have to use the <a href> tag and not the <p> tag.

  10. #10

    Thread Starter
    Fanatic Member Bonker Gudd's Avatar
    Join Date
    Mar 2000
    Location
    Saturn
    Posts
    748
    OK, I'll try that. Cheers for the help

Posting Permissions

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



Click Here to Expand Forum to Full Width