Newbish, but allignments?

liunx

Guest
----------------------------------------------------------------------
<font color=white><b><u>Sides</u></b><br></font>
<a href='http://www.webdeveloper.com/forum/archive/index.php/about.html' target=main>About</a><br>
<a href='http://www.webdeveloper.com/forum/archive/index.php/income.html' target=main>New income system</a><br>
</div>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/gbrinf.html' target=main>Great Britain: Infantry</a><br>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/frinf.html' target=main>France: Infantry</a><br>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/gerinf.html' target=main>Germany: Infantry</a><br>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/korinf.html' target=main>Korea: Infantry</a><br>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/usainf.html' target=main>USA: Infantry</a><br>
| <a href='http://www.webdeveloper.com/forum/archive/index.php/rlfinf.html' target=main>The RLF: Infantry</a><br>
<div align="center">
<a href='http://www.webdeveloper.com/forum/archive/index.php/scn.html' target=main>Screenshots</a><br>
<a href='http://www.webdeveloper.com/forum/archive/index.php/dnl.html' target=main>Download s</a><br>
<a href='http://www.webdeveloper.com/forum/archive/index.php/lnk.html' target=main>Links</a><br><br>
----------------------------------------------------------------------
ok, how do i change the link color of just that section? and how do i put a margin, so that after the [country:] there is a set mrgin and infantry applies to it, if you know what i mean?
-cheersI can't tell what "that section" is but here's a suggestion of how you might rethink what you've got.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Conforming HTML 4.01 Transitional Template</title>
<link rel="stylesheet" type="text/css" href=http://www.webdeveloper.com/forum/archive/index.php/"" />
<style type="text/css">
body { color:white; background: darkblue; }
ul,li,dl { margin:0;padding:0;list-style-type:none; }
dt { float:left; margin:0 5px; }
dd { margin-left: 100px; }
a { color: white; }
dl a { color:yellow; }
</style>
<script language="javascript" type="text/javascript">
</script>
</head>
<body>
<h2>Sides</h2>
<ul>
<li><a href='http://www.webdeveloper.com/forum/archive/index.php/about.html' target=main>About</a></li>
<li><a href='http://www.webdeveloper.com/forum/archive/index.php/income.html' target=main>New income system</a></li>
</ul>
<dl>
<dt>Great Britain:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/gbrinf.html' target=main>Infantry</a></dd>
<dd><a href='http://www.webdeveloper.com/forum/archive/index.php/gbrinf.html' target=main>Marines</a></dd>
<dt>France:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/frinf.html' target=main>Infantry</a></dd>
<dt>Germany:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/gerinf.html' target=main>Infantry</a></dd>
<dt>Korea:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/korinf.html' target=main>Infantry</a></dd>
<dt>USA:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/usainf.html' target=main>Infantry</a></dd>
<dt>The RLF:</dt><dd><a href='http://www.webdeveloper.com/forum/archive/index.php/rlfinf.html' target=main>Infantry</a></dd>
</dl>
<div align="center">
<ul style="border: 1px dotted white;">
<li><a href='http://www.webdeveloper.com/forum/archive/index.php/scn.html' target=main>Screenshots</a><br></li>
<li><a href='http://www.webdeveloper.com/forum/archive/index.php/dnl.html' target=main>Download s</a><br></li>
<li><a href='http://www.webdeveloper.com/forum/archive/index.php/lnk.html' target=main>Links</a><br><br></li>
</ul>
</div>
</body>
</html>lol, i wont se all of that because i already have locations and the upper part sort ou. But i can use the rest, so : Thanks :D
 
Back
Top