|
-
Aug 29th, 2001, 08:51 AM
#1
Thread Starter
Fanatic Member
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>
-
Aug 29th, 2001, 10:52 AM
#2
because it is not in a <a href> tag.
-
Aug 29th, 2001, 11:04 AM
#3
Thread Starter
Fanatic Member
-
Aug 30th, 2001, 05:17 AM
#4
If you want to use an underline you can use the U tag like this
Or if you need a link. you can do it like this
Code:
<a href="http://www.vbdungeon.net">1</a> 01
-
Aug 30th, 2001, 10:02 AM
#5
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>
-
Aug 30th, 2001, 10:52 AM
#6
Thread Starter
Fanatic Member
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>
-
Aug 30th, 2001, 11:04 AM
#7
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.
-
Aug 30th, 2001, 11:11 AM
#8
Thread Starter
Fanatic Member
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
-
Aug 30th, 2001, 01:25 PM
#9
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.
-
Aug 31st, 2001, 03:22 AM
#10
Thread Starter
Fanatic Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|