programmers inside please ...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TeenCat
    Too lazy to set a koala
    • Jan 2007
    • 16139

    #1

    programmers inside please ...

    hi every programmer out there ... i have something for you ... i have one page, in the middle of the page is a button. now, i need that button on my page, now it is in the middle of the page, i need to work with it as i have possitiont 0,0,0 ... anybody can help? and the price please? radimcillik at gmail is taking any offers! thanks in advance and lets dance!

    6bot
    / Coming again very soon!
    Svit Zlin Radio 24/7!
  • CYF
    Coupon Guru
    • Mar 2009
    • 10973

    #2
    bump for you teencat
    Webmaster Coupons Coupons and discounts for hosting, domains, SSL Certs, and more!
    AmeriNOC Coupons | Certified Hosting Coupons | Hosting Coupons | Domain Name Coupons

    Comment

    • TeenCat
      Too lazy to set a koala
      • Jan 2007
      • 16139

      #3
      thank you cyf, i already forgot about this, it is needed thank you!

      6bot
      / Coming again very soon!
      Svit Zlin Radio 24/7!

      Comment

      • Wizzo
        2011 GFY Hall of Fame!
        • Nov 2000
        • 15224

        #4
        Opps... I thought you said "programs" not "programmers"
        Looking for Opportunity!

        Comment

        • Zverka
          Confirmed User
          • Jun 2005
          • 307

          #5
          Originally posted by TeenCat
          hi every programmer out there ... i have something for you ... i have one page, in the middle of the page is a button. now, i need that button on my page, now it is in the middle of the page, i need to work with it as i have possitiont 0,0,0 ... anybody can help? and the price please? radimcillik at gmail is taking any offers! thanks in advance and lets dance!
          Here you go

          <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
          <html xmlns="http://www.w3.org/1999/xhtml">
          <head>
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
          <title>Untitled Document</title>
          <style type="text/css">
          <!--
          #buttonid {
          position: absolute;
          top: 0px;
          left: 0px;
          }
          -->
          </style>
          </head>

          <body>
          <label>
          <input type="submit" name="buttonid" id="buttonid" value="My button" />
          </label>
          </body>
          </html>

          You might change this

          #buttonid {
          position: absolute;
          top: 0px;
          left: 0px;
          }

          for this

          #buttonid {
          position: fixed;
          top: 0px;
          left: 0px;
          }

          for cool efect ;) (have in mind that ie6 and ie7 don't support fixed positioning

          Comment

          • ProG
            Confirmed User
            • Apr 2009
            • 1319

            #6
            Originally posted by Zverka
            Here you go
            I can't believe you were able to understand that scatterbrain
            History will be kind to me for I intend to write it.

            Comment

            • Zverka
              Confirmed User
              • Jun 2005
              • 307

              #7
              Originally posted by ProG
              I can't believe you were able to understand that scatterbrain
              LOL

              I've tried my best

              Comment

              • TeenCat
                Too lazy to set a koala
                • Jan 2007
                • 16139

                #8
                oh, thank you zverka. but, it is more complicated, as the button is generated ... i will be back at gfy tomorrow, with not drunk brain. thank you everyone, enjoy the heat!

                6bot
                / Coming again very soon!
                Svit Zlin Radio 24/7!

                Comment

                • Zverka
                  Confirmed User
                  • Jun 2005
                  • 307

                  #9
                  Originally posted by TeenCat
                  oh, thank you zverka. but, it is more complicated, as the button is generated ... i will be back at gfy tomorrow, with not drunk brain. thank you everyone, enjoy the heat!
                  Ok you need to figure out "id" for the button (button id inside html) as here

                  <input type="submit" name="buttonid" id="buttonid" value="My button" />

                  the best way is looking in generated html code (view source in browser)
                  and after that you can add to css this line

                  #buttonid {
                  position: absolute;
                  top: 0px;
                  left: 0px;
                  }

                  or

                  #buttonid {
                  position: fixed;
                  top: 0px;
                  left: 0px;
                  }

                  and of course change buttonid with yours

                  Comment

                  • Jakez
                    Confirmed User
                    • Jan 2004
                    • 5656

                    #10
                    Tell me why you arent able to speak legible english but only just enough to pissme off while reading it and I'll help you with whatever for free.
                    [email protected] - jakezdumb - 573689400

                    Killuminati

                    Comment

                    Working...