Click to See Complete Forum and Search --> : how to stop a href from wrapping


lehula
06-08-2007, 10:01 PM
I have an href like this. <a href="http:">some really long text</a>.

It is attached to a click and drag script and when I drag the href to the side of the screen, it wraps and becomes two lines. I dont want this. I know that if I set the width, it will prevent this, but is there any other way to keep this text from wraping and becoming two lines.

felgall
06-08-2007, 10:17 PM
In your stylesheet define:

a {white-space : nowrap;}

lehula
06-09-2007, 03:12 AM
Ty

ray326
06-10-2007, 01:00 PM
You could also use &nbsp; to replace the imbedded spaces.