View Full Version : no space between links?


cute_angel10490
07-04-2003, 10:05 AM
here's my code, but I want no space between my links, how do I do that?

<body background="nav.jpg" bgproperties="fixed" link="#D8415F" vlink="#F5C4DF" alink="#FFFFFF">
<p align=left><font face="Verdana" size="2" color="#D8415F"><a href="content.htm" style="cursor:w-resize" target="frame3">Home</a><p align=left><font face="Verdana" size="2" color="#D8415F"><a href="me.htm" style="cursor:w-resize" target="frame3">Me</a>
<p align=left><font face="Verdana" size="2" color="#D8415F"><a href="you.htm" style="cursor:w-resize" target="frame3">You</a><p align=left><font face="Verdana" size="2" color="#D8415F"><a href="site.htm" style="cursor:w-resize" target="frame3">Site</a>
&n_b_s_p;
<p align=center><font face="Verdana" size="1" color="D8415F">| <a href="Selena-Dreaming_Of_You.mp3" style="cursor:w-resize"> Play</a> | <a href="nomusic.htm" style="cursor:w-resize"> Stop</a> |

and one more thing, is my music code right?

pb&j
07-04-2003, 04:12 PM
try taking all of the
<p align="left">
out and replace them with
<br>

on a side note, you can put this style area in...
<style type="text/css">
a {font-family:Verdana; font-size:4pt; color:#D8415F;}
a:visited {color:#f5c4df;}
a:active {color:#ffffff;}
</style>
and then you can toast a bunch of coding so your outcome would look lik this...

<html>
<head>
<style type="text/css">
a {font-family:Verdana; font-size:4pt; color:#D8415F; cursor:w-resize;}
a:visited {color:#f5c4df;}
a:active {color:#ffffff;}
</style>
</head>
<body background="nav.jpg" bgproperties="fixed">
<a href="content.htm" target="frame3">Home</a>
<br>
<a href="me.htm" target="frame3">Me</a>
<br>
<a href="you.htm" target="frame3">You</a>
<br>
<a href="site.htm" target="frame3">Site</a>
<br>
<center>
| <a href="Selena-Dreaming_Of_You.mp3">Play</a> | <a href="nomusic.htm">Stop</a> |
</center>
</body>
</html>

cute_angel10490
07-05-2003, 03:49 AM
ok, thanks a lot!! :)

cute_angel10490
07-05-2003, 04:02 AM
what about on this code, how do I make no space between the links?

<p align="left"><font face="symbol,wingdings,arial" color="#D8415F" size="2">©</font><font face="Verdana" size="2" color="#D8415F"><a href="about_me.htm" style="cursor:w-resize" target="frame3"> About Me</a><p align="left"><font face="symbol,wingdings,arial" color="#D8415F" size="2">©</font><a href="my_name.htm" style="cursor:w-resize" target="frame3"> My Name</a>

Dude128
07-05-2003, 04:10 AM
Originally posted by pb&j
try taking all of the
<p align="left">
out and replace them with
<br>

it helps you learn if you read the post and don't just copy and paste the code :)

cute_angel10490
07-05-2003, 06:25 AM
oh ok, sorry! I'll read the code next time :D Thanks again!

Dude128
07-05-2003, 06:34 PM
it's not that big a deal or anything, I've just noticed that a lot of people just copy and paste the code given to them, without thinking, and a lot of people expect others to write their code for them. but the person doesn't learn anything that way. it only helps the person that writes the code practice :)