php forum
php mysql forum
php mysql smarty
 
Topic Options
#269905 - 02/25/04 10:48 PM Pulling my hair out
steelhead Offline
Power User

Registered: 01/14/04
Posts: 99
Loc: Portland, Oregon
I added this code to my header:<br /><br /><table border="3" cellpadding="0" cellspacing="0" width="0" bgcolor="#dedfdf" style="border: 5px outset #dedfdf; ; border-collapse:collapse" align="left" bordercolor="#ffffff"><br /> <br /><td width="100%" align="center" style="position: relative; float: left; border: 5px ridge #dedfdf; margin-left: 2; margin-top: 0; margin-bottom: 0; padding: 2"><font size="2"><font color="#000000">To post in our forums, or to see the members only forum, you need to </font><br /><a href="http://www.qualityfishing.net/forum/newuser.php?Cat=">register</a><font color="#000000">,</font> <font size="2" color="#000000"><i> it's free and only<br />takes a minute.</i></font><align="left"></td><br /> <br /> The new box shows up and works fine, but it pushs the threads tool bar off to the right of this new box. I beleave my code problem lies in the first part but I cant figure it out. <img src="http://www.ubbdev.com/forum/images/graemlins/frown.gif" alt="" />

Top
#269906 - 02/25/04 11:13 PM Re: Pulling my hair out [Re: Starfleet14]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Well you open the table - and never close it. Your code ends with a </td><br /><br /><br />Try adding<br /><br /></tr></table><br /><br />Otherwise the threads bar is just another cell in the table you are opening.
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#269907 - 02/26/04 11:44 PM Re: Pulling my hair out [Re: Daine]
steelhead Offline
Power User

Registered: 01/14/04
Posts: 99
Loc: Portland, Oregon
I wish it was that easy. <img src="http://www.ubbdev.com/forum/images/graemlins/confused.gif" alt="" /><br /><br />When I add both </tr></table> behind the first part, it brings the tool bar back in line. The words are there for my new box, but the box itself doesnt show.<br /><br />When I add just </table> behind the first part, it brings the tool bar back in line. The words are there for my new box, but the box itself doesnt show.<br /><br />When I add just </tr> behind the first part it the new box and words are there but the tool bar is way out on the side of the new box.<br /><br />When I add any of this </tr></table> behind the second part of the code it makes no changes. <img src="http://www.ubbdev.com/forum/images/graemlins/frown.gif" alt="" />
_________________________
Fish-On
Qualityfishing.net

Top
#269908 - 02/27/04 03:45 AM Re: Pulling my hair out [Re: Starfleet14]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Actually the HTML is a mess... go through it carefully - at the beginning you have a <table> open - followed by a <td><br /><br />It should be in this format:<br /><br /><table><br /><tr><br /><td><br />Stuff goes here<br /></td><br /></tr><br /></table><br /><br /><br />So try adding the opening <tr> and then the closing </tr> and </table><br /><br />That looks lik all you are missing.
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#269909 - 02/28/04 01:43 AM Re: Pulling my hair out [Re: Daine]
steelhead Offline
Power User

Registered: 01/14/04
Posts: 99
Loc: Portland, Oregon
You quote<br />"Actually the HTML is a mess". Well it takes a mess to make a mess. ; )Still learning. lol<br /><br /> Dont ask me why, but this is the only way I could get it to work right..<br /><br /><table><br /><tr><br /><td><table border="2" cellpadding="0" cellspacing="0" width="0" bgcolor="#dedfdf" style="border: 5px outset #dedfdf; ; border-collapse:collapse" bordercolor="#ffffff"><br /><br /><td width="100%" align="center" style="position: relative; float: left; border: 5px ridge #dedfdf; margin-left: 2; margin-top: 0; margin-bottom: 0; padding: 2"><font size="2"><font color="#000000">To post in our forums, or to see the members only forum, you need to </font><a href="http://www.qualityfishing.net/forum/newuser.php?Cat=">register</a><font color="#000000">,</font><font size="2" color="#000000"><i> it's free and only<br />takes a minute.</i></font></td><br /><br />But it works so Im happy. Thanks Josh.
_________________________
Fish-On
Qualityfishing.net

Top
#269910 - 03/01/04 09:54 AM Re: Pulling my hair out [Re: Starfleet14]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25448
Loc: Texas
???<br /><br />Josh is right, that html is a mess <img src="http://www.ubbdev.com/forum/images/graemlins/crazy.gif" alt="" /><br /><br />Try viewing it in mozilla and a couple other browsers that aren't as forgiving as IE.<br /><br />As well, you didn't let us see what the rest of the html was like... you could be closing both tables in your footer or something <img src="http://www.ubbdev.com/forum/images/graemlins/tongue.gif" alt="" /><br /><br />One question, why would you specify a border, then collapse it? Doesn't that make it invisible? I'm not familiar with the collapse variable.
_________________________
- Allen wavey
- What Drives You?

Top
#269911 - 03/01/04 10:00 AM Re: Pulling my hair out [Re: SurfMinister]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25448
Loc: Texas
And.... if you're having html problems, it's always good to start here:<br /><br />http://validator.w3.org/check?uri=http://www.qualityfishing.net
_________________________
- Allen wavey
- What Drives You?

Top
#269912 - 03/06/04 07:07 PM Re: Pulling my hair out [Re: Starfleet14]
fishtails Offline
Enthusiast

Registered: 06/19/02
Posts: 307
Loc: Fernandina Beach, FL
I took a look at your source code on your home page at qualityfishing.net. There's tons of problems, beginning with your advertising banner s at the very top. You have the images within table cells, yet there is no open table, nor an opening table row tag. Take a look at your html again. This very well may be throwing everything else off, besides adding the code Josh stated.<br /><br />The following code is what you have beginning your page with no opening table. Add an open table and row at the begining of this code, as well as a closing row and table. Also, you may want to take a look at the cell widths. They add up to 200% on my calculations. Take care of that first, THEN work on the code you posted originally. Also, your logo image might need to be in a table, but if not I would at least add a <br /> at the end of your logo code.<br /><br />
Code:
 &lt;td width="50%" align="center"&gt;&lt;a href="http://www.qualityfishingadventures.com/" target="_blank"&gt;&lt;img border="0" src="http://www.qualityfishing.net/gallery/data/500/2guide_service666666.jpg" width="312" height="100"&gt;&lt;/a&gt;&lt;/td&gt;<br />                              <br />                              <br />  &lt;td width="50%" align="center"&gt;&lt;a href="http://www.visionhooksandtackle.com/" target="_blank"&gt;&lt;img border="0" src="http://www.qualityfishing.net/gallery/data/500/2vision-logo.jpg" width="312" height="100"&gt;&lt;/a&gt;&lt;/td&gt;<br />            <br />  &lt;td width="25%" align="center"&gt;&lt;a href="http://www.abugarcia.com" target="_blank"&gt;&lt;img border="0" src="http://www.qualityfishing.net/gallery/data/500/2abu.jpg" width="157" height="40"&gt;&lt;/a&gt;&lt;/td&gt;<br />                              <br />            &lt;td width="25%" align="center"&gt;&lt;a href="http://www.berkley-fishing.com" target="_blank"&gt;&lt;img border="0" src="http://www.qualityfishing.net/gallery/data/500/2berkley.jpg" width="157" height="40"&gt;&lt;/a&gt;&lt;/td&gt;<br />            <br />            &lt;td width="50%" align="center"&gt;&lt;a href="http://www.theguidesforecast.com" target="_blank"&gt;&lt;img border="0" src="http://www.theguidesforecast.com/pic/tgflogo.gif" width="312" height="50"&gt;&lt;/a&gt;&lt;/td&gt;                <br />                  <br />             
_________________________
Fish or Cut Bait! http://www.fish-tails.net

[:"red"]Air traffic control? It has its ups and downs.[/] http://www.natcazjx.org

Top
#269913 - 03/13/04 01:38 AM Re: Pulling my hair out [Re: ]
steelhead Offline
Power User

Registered: 01/14/04
Posts: 99
Loc: Portland, Oregon
Why did I do that? Beacause I dont know what I am doing. <img src="http://www.ubbdev.com/forum/images/graemlins/grin.gif" alt="" /> It works for me, but I will see if I can play with it more. I dont know Jack, but it gives me a chance to learn.<br /><br />Thanks Guys <img src="http://www.ubbdev.com/forum/images/graemlins/cool.gif" alt="" />
_________________________
Fish-On
Qualityfishing.net

Top


Who's Online
0 registered (), 25 Guests and 15 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Forum 'Trader Ratings'.
by blaaskaak
11/20/08 08:27 AM
Problems reading a lot of old posts here
by Ruben Rocha
11/18/08 04:33 PM
PhotoPost BB Code Popup
by Iann128
11/15/08 01:24 PM
Customization needed
by Gizmo
11/12/08 12:28 PM
Team UBBDev Rides Again!
by AllenAyres
11/11/08 02:16 PM
Active Topics.
by AllenAyres
11/11/08 02:13 PM
Looking for a simple upload script
by AllenAyres
11/11/08 02:12 PM
New Mods
Forum 'Trader Ratings'.
by McLemore
11/19/08 02:14 PM
[7.4] Keep log of custom title changes
by blaaskaak
10/27/08 07:51 AM
User Authentication Class
by
01/19/07 02:59 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
PhotoPost BB Code Popup
by
11/06/06 05:43 PM
Newest Members
nick1, Begbie, cenk, MATTO, DougMMcts
13362 Registered Users
Top Posters
AllenAyres 25448
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks