Jump to content

Aligning problem.

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
k4m1k4z1

k4m1k4z1

    Learning Programmer

  • Members
  • PipPipPip
  • 38 posts
Hey guys! I have been working on some code and I have been working with some javascript. It is all working good but i cant seem to find a way to align my javascript button. here is a pic:[ATTACH]3090[/ATTACH].
Is there any way to fix this? help would be amazing.
and another question, how do you choose specific places to align pictures, like coordinates? thanks.

The code is:
<form>

<input type="button" value="Press Me" 

onclick=message()></input>

</form>

Attached Files



#2
NastyDevil

NastyDevil

    Learning Programmer

  • Members
  • PipPipPip
  • 90 posts
<input style="position:relative;left:100px" type="button" value="Press Me" onclick=message()></input>


you can of course style it with outside css aswell. oh and change the 100px to anything u need

#3
k4m1k4z1

k4m1k4z1

    Learning Programmer

  • Members
  • PipPipPip
  • 38 posts
Thanks man