Results 1 to 18 of 18

Thread: command buttons for HTML

  1. #1

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127

    command buttons for HTML

    heres the screen shot...the problem is is where it says Team BushWacked and where it says links should be connected i can't get it to work right. is there a way to do this?(i know the screenshot is messed. when i converted it for .bmp to .jpg it got messed up, but u get the jist of it)
    Attached Images Attached Images  
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  2. #2
    scoutt
    Guest
    what code are you using?

  3. #3

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    using html i'm just using the img scr commands
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  4. #4
    scoutt
    Guest
    well something is in the way of one of those img tags, without seeing the source I can't tell you what it is.

  5. #5

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    Code:
    <html>
    
    <head>
      <title>Team BushWacked</title>
      <meta name="description" content="">
      <meta name="keywords" content="">
      </head>
    <body bgcolor="#008000" text="#000000" link="yellow" vlink="white">
    <embed scr="" autostart="true" controls="console">  
    <body background="images/tbw.bmp">
    
    </body>
    </html>
    
    <div align="left"><img src="images/buttontbw.bmp" alt=""></div><center><img src="images/tbwicon.jpg" alt="">
    <div align="left"><img src="images/buttonlinks.bmp" alt=""><center><font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <div align="left"><img src="images/buttonbios.bmp" alt="">
    <div align="left"><img src="images/buttonmags.bmp" alt="">
    <div align="left"><img src="images/buttontourneys.bmp" alt="">
    <div align="left"><img src="images/buttonfuture.bmp" alt="">
    <div align="left"><img src="images/buttoncontact.bmp" alt="">
    <br>
    <center><font face="comic sans ms" size=3 color="white">Welcome to the web site. 
    Basically this is our lifes.We decided to share it with the world.We are a rookie
    team, But all great teams start some where and this is our begining, Now we decide 
    the ending.</center>
    <br>
    <div left>-Ryan Stickle, Captain</div> 
    <br>
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  6. #6
    scoutt
    Guest
    Code:
    <div align="left"><img src="images/buttontbw.bmp" alt=""></div><center><img src="images/tbwicon.jpg" alt="">
    <div align="left"><img src="images/buttonlinks.bmp" alt=""><center><font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <div align="left"><img src="images/buttonbios.bmp" alt="">
    right there is your problem, put those on the bottom or top. but not in the middle of the img tags.

  7. #7
    scoutt
    Guest
    actually it would be better if you put them (img tags ) in a table and aligned the table to the left and then you wouldn't have to worry about the other images getting in the way

  8. #8

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    here's what i did
    Code:
    <center><img src="images/tbwicon.jpg" alt="">
    <center><font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <colgroup><div align="left"><img src="images/buttontbw.bmp" alt="">
    <div align="left"><img src="images/buttonlinks.bmp" alt="">
    <div align="left"><img src="images/buttonbios.bmp" alt="">
    <div align="left"><img src="images/buttonmags.bmp" alt="">
    <div align="left"><img src="images/buttontourneys.bmp" alt="">
    <div align="left"><img src="images/buttonfuture.bmp" alt="">
    <div align="left"><img src="images/buttoncontact.bmp" alt=""></div></colgroup>
    but i still have the same problem w/ the gap. this is waht i would like to see...if its possible
    Attached Images Attached Images  
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  9. #9
    scoutt
    Guest
    try this
    Code:
    <center><img src="images/tbwicon.jpg" alt=""><br>
    <font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <colgroup><div align="left"><img src="images/buttontbw.bmp" alt="">
    <div align="left"><img src="images/buttonlinks.bmp" alt="">
    <div align="left"><img src="images/buttonbios.bmp" alt="">
    <div align="left"><img src="images/buttonmags.bmp" alt="">
    <div align="left"><img src="images/buttontourneys.bmp" alt="">
    <div align="left"><img src="images/buttonfuture.bmp" alt="">
    <div align="left"><img src="images/buttoncontact.bmp" alt=""></div></colgroup>
    I don't recognise the <colgroup> tag. what is that? also I took out the second <center> tag as you were centering the whole thing from the first center tag. so now the center tag is closed and you can use the div tag to make the imgs go left. if that doesn't work try this.
    Code:
    <center><img src="images/tbwicon.jpg" alt="">
    <font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <div align="left">
    <table border="0"> 
    <tr><td><img src="images/buttontbw.bmp" alt=""> </td></tr>
    <tr><td><img src="images/buttonlinks.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonbios.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonmags.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttontourneys.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonfuture.bmp" alt=""></td></tr>
    <div align="left"><img src="images/buttoncontact.bmp" alt=""></td></tr></table></div>

  10. #10

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    <colgroup></colgroup> is a command button in the html editor i use(HTML-Kit). it shows a picture of a cloumn i assumed it was for putting everything how said to, but i guess not.thnx for the help.
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  11. #11

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    <colgroup> nor <td><tr> worked i did what u said
    Code:
    <center><img src="images/tbwicon.jpg" alt="">
    <font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    <div align="left">
    <table border="0"> 
    <tr><td><img src="images/buttontbw.bmp" alt=""> </td></tr>
    <tr><td><img src="images/buttonlinks.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonbios.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonmags.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttontourneys.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonfuture.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttoncontact.bmp" alt=""></td></tr></table></div>
    but it still looks like this
    Attached Images Attached Images  
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  12. #12
    scoutt
    Guest
    it's close isn't it??

    just take do this and see if it comes out how you want.
    Code:
    <div align="left">
    <table border="0"> 
    <tr><td><img src="images/buttontbw.bmp" alt=""> </td></tr>
    <tr><td><img src="images/buttonlinks.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonbios.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonmags.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttontourneys.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttonfuture.bmp" alt=""></td></tr>
    <tr><td><img src="images/buttoncontact.bmp" alt=""></td></tr></table></div>
    <center><img src="images/tbwicon.jpg" alt=""><br>
    <font color=black face="comic sans ms" size=4>Franklin, NJ</center>
    it is hard to do it if I don't have the images to work with to test it.

  13. #13
    Fanatic Member gwdash's Avatar
    Join Date
    Aug 2000
    Location
    Minnesota
    Posts
    666
    try this:

    Code:
    <table cols="2" rows="1">
       <tr>
          <td align="left">
             <table border="0"> 
               <tr>
                  <td><img src="images/buttontbw.bmp" alt=""></td>
               </tr>
               <tr>
                  <td><img src="images/buttonlinks.bmp" alt=""></td>
               </tr>
               <tr>
                  <td><img src="images/buttonbios.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttonmags.bmp" alt=""></td>
                </tr>
                <tr>
                  <td><img src="images/buttontourneys.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttonfuture.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttoncontact.bmp" alt=""></td>
                </tr>
             </table>
          </td>
       </tr>
       <tr>
          <td align="center">
             <img src="images/tbwicon.jpg" alt="">
             <font color=black face="comic sans ms" size=4>Franklin, NJ</font>
          </td>
       </tr>
    </table>
    GWDASH
    [b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]

  14. #14

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    still nothing does the same thing...this is starting to piss me offi don't know much about html but i've been trying this for a week now...so all the help is appreciated
    Last edited by VB Begginer Kid; Aug 29th, 2001 at 11:58 AM.
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  15. #15
    scoutt
    Guest
    is this on a site that we can go see. if so gives us the url and let us work on it. these suggestions should have worked.

  16. #16

    Thread Starter
    Lively Member VB Begginer Kid's Avatar
    Join Date
    Jul 2001
    Location
    home
    Posts
    127
    well i didn't put the buttons up yet b/c i haven't gotten them to work right..i guess i'll put them up...here's the link users.nac.net/jarnold
    Last edited by VB Begginer Kid; Aug 29th, 2001 at 12:24 PM.
    I'm a beginner.
    ------------------------------------------------
    Your impossible ego ***** is like a
    Megalomaniacal tab on my tongue
    You *****in' touch me I will rip you apart


  17. #17
    scoutt
    Guest
    ok try this
    Code:
    <table align="center" width=100% border=0>
    <tbody>
    <tr><td width="90">
    <TABLE border="0" align="left"></TR>
              <TR>
              <TD><IMG alt="" src="buttontbw.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" src="buttonlinks.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" src="buttonbios.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" src="buttonmags.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" 
    src="buttontourneys.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" src="buttonfuture.bmp"></TD></TR>
            <TR>
              <TD><IMG alt="" 
            src="buttoncontact.bmp"></TD></tr></table>
    
    <td rowspan=6 align=center><IMG alt="" src="tbwicon.jpg"><br>
          <FONT face="comic sans ms" color=black size=4>Franklin, NJ</FONT></td></tr></tbody>
    
    </TABLE>

  18. #18
    Fanatic Member gwdash's Avatar
    Join Date
    Aug 2000
    Location
    Minnesota
    Posts
    666
    i had some glitches in my code, try this:

    Code:
    <table cols="2" rows="1">
       <tr>
          <td align="left">
             <table border="0"> 
               <tr>
                  <td><img src="images/buttontbw.bmp" alt=""></td>
               </tr>
               <tr>
                  <td><img src="images/buttonlinks.bmp" alt=""></td>
               </tr>
               <tr>
                  <td><img src="images/buttonbios.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttonmags.bmp" alt=""></td>
                </tr>
                <tr>
                  <td><img src="images/buttontourneys.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttonfuture.bmp" alt=""></td>
                </tr>
                <tr>
                   <td><img src="images/buttoncontact.bmp" alt=""></td>
                </tr>
             </table>
          </td>
          <td align="center" valign="middle">
             <img src="images/tbwicon.jpg" alt="">
             <font color=black face="comic sans ms" size=4>Franklin, NJ</font>
          </td>
       </tr>
    </table>
    GWDASH
    [b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width