View Full Version : Aligning?


reddragon8
05-14-2005, 01:18 PM
[ http://www.reddragons.secretsomebody.com/index.php ]
-View Source

How can i align the "Navigation" to the Right.... of the table?


& why is my image not completely straight in the middle?
I cut it up.... so it would be easier to upload, but how can i get it straight?


Cheers, :)!

starlet
05-14-2005, 04:01 PM
Everything looks fine to me, did you fix it all up?

reddragon8
05-14-2005, 05:05 PM
http://www.reddragons.secretsomebody.com/right.GIF

this is what kinda want.... :)

xxxxx

pb&j
05-15-2005, 03:05 AM
change this exact part...

<tr><td>


<td width="30%" valign="Right">


<p>


to this exact coding ...


<tr>
<td width="30%" style="text-align:right; vertical-align:top;">

reddragon8
05-15-2005, 08:45 PM
thanx!

I kinda wanted it to be exactly underneth the 'navgation dots' it abit to much towards the right, i tried setting the cell spacing but, i can't get exactly what i want.

but cheers btw :)

mcg1sean
05-17-2005, 02:45 AM
ok, first the picture looks fine. Second, make your nav bar using CSS. Use a 2 column layout with a header. put your picture and whatnot in the header. and put the nav bar and all of your links on the left column.

NOTE: you will have to change the margins and stuff to accomedate your information

<html>
<head>
<title>Two Column CSS Layout with Header</title>
<style type="text/css">

body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}

#header {
margin: 20px;
padding: 10px;
height: 100px;
}
#left {
position: absolute;
left: 15px;
top: 160px;
width: 200px;
}
#center {
top: 0;
margin-left: 230px;
margin-right: 15px;
}
</style>
</head>

<body>

<div id="header">

put your picture and whatnot here

</div>

<div id="left">

Your nav bar goes here
</div>


<div id="center">
all of your content goes here


</div>

</body>
</html>



Hope this helps :)

reddragon8
05-17-2005, 04:09 PM
lol, im lil confused...
whats the 'margin's?

sorry