Page 1 of 1

using css to position things, only one thing works!

Posted: Sun Dec 24, 2006 10:16 pm
by Mythic Fr0st
some reason all these things but the "South" button dont get positioned properly (only south works)

Code: Select all

<n>
        <form method="post" action="indexg.php">
        <input type='hidden' name='Nth1' value='Nth2'>
        <input type="submit" value="North">
        </form>
        </n>
        <s>
        <form method="post" action="indexg.php">
        <input type='hidden' name='Sth1' value='Sth2'>
        <input type="submit" value="South">
        </form>
        </s>
        <w>
        <form method="post" action="indexg.php">
        <input type='hidden' name='Wst1' value='Wst2'>
        <input type="submit" value="West">
        </form>
        </w>
        <e>
        <form method="post" action="indexg.php">
        <input type='hidden' name='East1' value='East2'>
        <input type="submit" value="East">
        </form>
        </e>
those are the buttons the css code is

Code: Select all

s {
position: absolute;
top: 186px;
left: 760px;
padding: 0 0em;
<!--background: #c00;
color: white;
font-weight: bold;-->
		}

n {
position: absolute;
top: 156px;
left: 760px;
padding: 0 0em;
<!--background: #c00;
color: white;
font-weight: bold;-->
		}


e {
position: absolute;
top: 171px;
left: 700px;
padding: 0 0em;
<!--background: #c00;
color: white;
font-weight: bold;-->
		}
w {
position: absolute;
top: 171px;
left: 820px;
padding: 0 0em;
<!--background: #c00;
color: white;
font-weight: bold;-->
honestly they're exactly the same to me, can anyone see my mistake?

Posted: Sun Dec 24, 2006 10:49 pm
by John Cartwright
why did you need to make a new thread for this?

Topic Locked.