CodeChargenewbie
Posts: 114
|
| Posted: 09/20/2007, 7:16 AM |
|
Sorry about the title.
OK, I'm doing some custom code and I need some help. On the design page, I have a label. I don't want this label to show up at certain times; so, I went into the custom code and created a condition where if said condition is not met, the label is not displayed. So far , so good. The problem is there's still a return character or break line or something.
Basically, this is how it looks on the page:
Label1
Label2
Label3
I want to get rid of Label2 for a certaom cpmdotopm and so I do that in the custom code. Now it looks like this if the condition is not met:
Label1
Label3
I want to get rid of the row between label1 and label3 in the custom code so it looks like this:
Label1
Label3
So, how do I do this????
Essentially, how do I delete the break line or carriage return that's left over in the custom code??????
|