GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Webmaster Q & Fuckin' A (https://gfy.com/forumdisplay.php?f=27)
-   -   HTML code needed. (https://gfy.com/showthread.php?t=949825)

bigmath 01-22-2010 04:53 PM

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 -->

CPimp 01-22-2010 05:04 PM

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 ;)

CodeR70 01-22-2010 05:14 PM

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.

bigmath 01-22-2010 05:38 PM

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!

CodeR70 01-22-2010 05:52 PM

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 :thumbsup

bigmath 01-22-2010 06:04 PM

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!

CodeR70 01-22-2010 06:25 PM

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

bigmath 01-22-2010 06:34 PM

Hmmm. it's update. You can contact me ICQ if you can 8912865

CPimp 01-22-2010 10:33 PM

Okay well I tried. Have a good one.

bigmath 01-23-2010 06:30 AM

Thanks Tube2k. It was appreciated.

CodeR70 01-23-2010 02:29 PM

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.

bigmath 01-23-2010 03:00 PM

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

CodeR70 01-23-2010 07:36 PM

Quote:

Originally Posted by bigmath (Post 16777145)
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.

bigmath 01-23-2010 07:40 PM

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!

rob04 01-23-2010 09:07 PM

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/

bigmath 01-24-2010 06:33 AM

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

Bigmath

CodeR70 01-24-2010 12:42 PM

Quote:

Originally Posted by bigmath (Post 16777760)
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.

bigmath 01-24-2010 03:01 PM

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!

CodeR70 01-24-2010 04:14 PM

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 01-24-2010 04:15 PM

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.

bigmath 01-24-2010 04:17 PM

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


All times are GMT -7. The time now is 02:58 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc