HTML code needed.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bigmath
    Confirmed User
    • Mar 2003
    • 884

    #1

    HTML code needed.

    Hi Guys!

    I know that some guys here are very good. Can someone help me please on that html code.

    I want to have a banner on left of my content (Main table). And also what`s the code to have the banner on the left side but middle of the content? Thanks guys!


    <!-- BEGIN THUMBS -->
    <TABLE BORDER=0 WIDTH=670 CELLPADDING=0 CELLSPACING=0>
    <TR VALIGN=TOP><TD WIDTH=670><IMG SRC="images/amateur.jpg"></TD></TR>
    <TR VALIGN=TOP ALIGN=CENTER>
    <TD WIDTH=670 BACKGROUND="images/bg.jpg">

    [BANNER HERE]

    [CONTENT]

    </TD></TR>
    <TR><TD><a href="javascript:bookmarksite('MYDOMAIN.COM-->>HOURLY updated thumbnail galleries!', 'http://www.mydomain.com')"><IMG SRC="images/bottom.jpg"

    BORDER=0></A></TD></TR></TABLE>
    <!-- END THUMBS -->
    Adult Webmaster Empire
  • CPimp
    Confirmed User
    • Aug 2009
    • 2346

    #2
    First off, you need to add quotes to all of your values. Second off, the <td> that you're adding the banner into, you need to add align="center". That should work. Maybe wanna hit me up on ICq so I can help ya out... You might need it ;)
    three 997 three 55 three 1 ← That's my ICQ. Contact me there. Thanks.

    Comment

    • CodeR70
      Confirmed User
      • Jul 2009
      • 364

      #3
      something like

      Code:
      ....
      <tr><td valign="middle">BANNER</td><td>CONTENT</td></tr>
      ....
      and the CSS version

      Code:
      ....
      <tr><td style="vertical-align: middle;">BANNER</td><td>CONTENT</td></tr>
      ....
      Or did you had something else in mind? Otherwise put the file somewhere on a server so we can see.

      Comment

      • bigmath
        Confirmed User
        • Mar 2003
        • 884

        #4
        You can take a look to adultfreetgp (DOT) com/test.php I did the CSS version and not working good ;-)

        Also thanks guys for your help!
        Adult Webmaster Empire

        Comment

        • CodeR70
          Confirmed User
          • Jul 2009
          • 364

          #5
          It is centered vertically, that is what you want right?

          The other problem is that all table rows have one cell but now the banner/content row has 2 cells. ie

          Code:
          ...
          <tr><td>blah blah</td></tr>
          <tr><td>BANNER</td><td>CONTENT</td></tr>
          <tr><td>blah blah</td></tr>
          ...
          solution 1: give all rows the same amount of cells

          Code:
          ...
          <tr><td>&nbsp;</td><td>blah blah</td></tr>
          <tr><td>BANNER</td><td>CONTENT</td></tr>
          <tr><td>blah blah</td></tr>
          <tr><td>&nbsp;</td><td>blah blah</td></tr>
          ...
          solution 2: set colspan for single cell rows

          Code:
          ...
          <tr><td colspan="2">blah blah</td></tr>
          <tr><td>BANNER</td><td>CONTENT</td></tr>
          <tr><td colspan="2">blah blah</td></tr>
          ...
          Obviously, the style/valign still applies to the banner cell.

          Hope this helps

          Comment

          • bigmath
            Confirmed User
            • Mar 2003
            • 884

            #6
            Yeeah it's little bit better but not 100%. Take a look again and see what I need. The banner is on the side, this work fine but I don't have my background image coming up!
            Adult Webmaster Empire

            Comment

            • CodeR70
              Confirmed User
              • Jul 2009
              • 364

              #7
              Can you update the test.php so I can look at it again?

              Comment

              • bigmath
                Confirmed User
                • Mar 2003
                • 884

                #8
                Hmmm. it's update. You can contact me ICQ if you can 8912865
                Adult Webmaster Empire

                Comment

                • CPimp
                  Confirmed User
                  • Aug 2009
                  • 2346

                  #9
                  Okay well I tried. Have a good one.
                  three 997 three 55 three 1 ← That's my ICQ. Contact me there. Thanks.

                  Comment

                  • bigmath
                    Confirmed User
                    • Mar 2003
                    • 884

                    #10
                    Thanks Tube2k. It was appreciated.
                    Adult Webmaster Empire

                    Comment

                    • CodeR70
                      Confirmed User
                      • Jul 2009
                      • 364

                      #11
                      bigmath, sorry for the delay. Did you solve it? If you want I can try to create a quick example.

                      Something else though, you really need to get into HTML. After that some CSS would be great as well. Check out the web, there is plenty of HTML information to find (my fav is still w3schools). I think you miss some basic understanding of HTML and a few hours of reading will help you in the right direction, I'm sure.

                      Anyway, let me know about the example. I will probably create that tomorrow (Sunday) if you need it.

                      Comment

                      • bigmath
                        Confirmed User
                        • Mar 2003
                        • 884

                        #12
                        Hi CodeR70. No I still not fix it. I have made some CSS but I see that is not working great with IE. I use Firefox and I have take a look last night with IE and really not working. Yes if it's possible I will need little more help please. Thanks!

                        Like I said, if you want to contact me ICQ, I wait your call ;-)

                        Bigmath
                        Adult Webmaster Empire

                        Comment

                        • CodeR70
                          Confirmed User
                          • Jul 2009
                          • 364

                          #13
                          Originally posted by bigmath
                          Hi CodeR70. No I still not fix it. I have made some CSS but I see that is not working great with IE. I use Firefox and I have take a look last night with IE and really not working. Yes if it's possible I will need little more help please. Thanks!

                          Like I said, if you want to contact me ICQ, I wait your call ;-)

                          Bigmath
                          Ok, I will create the example during sunday, not sure when but I promise I will. I will stick with the HTML table for now. Just to be sure, you only want a banner on the left. Or do u also want one on the right as well (both sites)?

                          Hate ICQ tbh, only if its really necessary and there is no other option. But you can always mail me at [email protected]. Make sure you say ur from GFY because sometimes I do not recognize people immediately.

                          Comment

                          • bigmath
                            Confirmed User
                            • Mar 2003
                            • 884

                            #14
                            Ok great CodeR.

                            Yes I need a banner only on the side left. It's not necessary on the right. It should be easy after to only put one on the right side with the left code.

                            Thanks!
                            Adult Webmaster Empire

                            Comment

                            • rob04
                              Confirmed User
                              • Sep 2004
                              • 150

                              #15
                              FYI, not sure if it's actual code you posted but code in all caps is not valid markup. Browsers will recognize it but it will not validate. Validation issues are rumored to cause issues with search engine rankings.

                              http://validator.w3.org/

                              Comment

                              • bigmath
                                Confirmed User
                                • Mar 2003
                                • 884

                                #16
                                Thanks rob. It's good to know this website to help me fix the site.

                                Bigmath
                                Adult Webmaster Empire

                                Comment

                                • CodeR70
                                  Confirmed User
                                  • Jul 2009
                                  • 364

                                  #17
                                  Originally posted by bigmath
                                  Yes I need a banner only on the side left. It's not necessary on the right. It should be easy after to only put one on the right side with the left code.
                                  Check out http://www.pinktraffic.net/bigmath/. I tried to keep it as clean as possible. Hope this will help.

                                  Comment

                                  • bigmath
                                    Confirmed User
                                    • Mar 2003
                                    • 884

                                    #18
                                    Thanks Code but I was looking to have the banner under the table ? It it too hard to do it? Because this way I was able to do it. Me it's to put inside.

                                    Thanks!
                                    Adult Webmaster Empire

                                    Comment

                                    • CodeR70
                                      Confirmed User
                                      • Jul 2009
                                      • 364

                                      #19
                                      You mean next to the cam girls and the top list? It is basically the same, you create a 2 column table. Instead of the video wall you include those 2 iframes and you are done.

                                      Comment

                                      • CodeR70
                                        Confirmed User
                                        • Jul 2009
                                        • 364

                                        #20
                                        If I still have it wrong, create a sketch of how you want the page to look and post that sketch somewhere on the web for us to see.

                                        Comment

                                        • bigmath
                                          Confirmed User
                                          • Mar 2003
                                          • 884

                                          #21
                                          No. Ok thanks for your help. I think it will be faster to put banner like normal on the buttom of a table.

                                          Thanks again for your great help.

                                          Bigmath
                                          Adult Webmaster Empire

                                          Comment

                                          Working...