Click to See Complete Forum and Search --> : Page-Details: Bookmark Us! (easy question)


rizakag
12-16-2002, 10:43 AM
The link that users see when I use this "bookmark us" script is too large:

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {

var url="http://engineering.dupont.com/100years/";
var title="Engineering 100th Anniversary";

document.write('<A HREF="javascript:window.ext');
document.write('ernal.AddFavorite(url,title);" ');
document.write('onMouseOver=" window.status=');
document.write("'Add our site to your favorites!'; return true ");
document.write('"onMouseOut=" window.status=');
document.write("' '; return true ");
document.write('">Add our site to your favorites!</a>');
}
else {
var msg = "Add this site to your bookmarks!";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}

// End -->
</script>

*******************
I need to make the font smaller in the "Add our site to your favorites!" link. I know this is probably a stupid question, but where would I do that?

pyro
12-16-2002, 12:57 PM
First of all, there is no such thing as a stupid question.

What you need to do is add <font size="-1"> before your script and </font> after, like so.

<font size="-1">
<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {

var url="http://engineering.dupont.com/100years/";
var title="Engineering 100th Anniversary";

document.write('<A HREF="java script:window.ext');
document.write('ernal.AddFavorite(url,title);" ');
document.write('onMouseOver=" window.status=');
document.write("'Add our site to your favorites!'; return true ");
document.write('"onMouseOut=" window.status=');
document.write("' '; return true ");
document.write('">Add our site to your favorites!</a>');
}
else {
var msg = "Add this site to your bookmarks!";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}

// End -->
</script>
</font>