Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

 

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
New Webmasters ask "How-To" questions here. This is where other fucking Webmasters help.

 
Thread Tools
Old 01-22-2010, 04:53 PM   #1
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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 -->
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 05:04 PM   #2
CPimp
Confirmed User
 
CPimp's Avatar
 
Industry Role:
Join Date: Aug 2009
Posts: 2,346
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.
CPimp is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 05:14 PM   #3
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 05:38 PM   #4
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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!
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 05:52 PM   #5
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
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
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 06:04 PM   #6
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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!
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 06:25 PM   #7
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
Can you update the test.php so I can look at it again?
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 06:34 PM   #8
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
Hmmm. it's update. You can contact me ICQ if you can 8912865
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-22-2010, 10:33 PM   #9
CPimp
Confirmed User
 
CPimp's Avatar
 
Industry Role:
Join Date: Aug 2009
Posts: 2,346
Okay well I tried. Have a good one.
__________________
three 997 three 55 three 1 ← That's my ICQ. Contact me there. Thanks.
CPimp is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 06:30 AM   #10
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
Thanks Tube2k. It was appreciated.
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 02:29 PM   #11
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 03:00 PM   #12
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 07:36 PM   #13
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
Quote:
Originally Posted by bigmath View Post
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 07:40 PM   #14
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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!
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-23-2010, 09:07 PM   #15
rob04
Confirmed User
 
Join Date: Sep 2004
Posts: 150
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/
rob04 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 06:33 AM   #16
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
Thanks rob. It's good to know this website to help me fix the site.

Bigmath
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 12:42 PM   #17
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
Quote:
Originally Posted by bigmath View Post
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 03:01 PM   #18
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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!
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 04:14 PM   #19
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 04:15 PM   #20
CodeR70
Confirmed User
 
CodeR70's Avatar
 
Join Date: Jul 2009
Location: Netherlands
Posts: 364
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.
CodeR70 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
Old 01-24-2010, 04:17 PM   #21
bigmath
Confirmed User
 
Join Date: Mar 2003
Posts: 884
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
bigmath is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook
 
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.