|
Post by Streamstrider on Sept 19, 2012 8:36:11 GMT -8
|
|
|
Post by Wormopolis on Sept 19, 2012 17:13:54 GMT -8
interesting... lets start by fixing this:
<span id="bannerlogin" style="display: none"><form onsubmit="disable(this); if(location.href.indexOf('action=logout')==-1)this.redirect.value=location.href; " name="sideloginform" method="post" action="/index.cgi" > <input type="hidden" name="redirect" value="/index.cgi" > <input type="hidden" value="login2" name="action"> <img src="http://s3.images.proboards.com/blank.gif" onload="document.getElementById('sidelogout').style.display=(pb_username=='Guest '?'none':'')"/> <table width="100%" cellspacing="3" cellpadding="0" border="0"> <tbody><tr> </center> <center><input type="text" style="font-family: arial; text-align: left; font-size: 9px;" maxlength="18" tabindex="3001" size="9" name="username"> <input type="password" style="font-family: arial; text-align: left; font-size: 9px;" tabindex="3002" size="9" name="password"> <input type="submit" font-size="10" font-family="arial" tabindex="3004" value="swap" name="loginbtn"> </center></tr> </tbody></table> </center> </form> </span>
you have a table in there with NO TD tags... TD tags need to be in there.
|
|
|
Post by Streamstrider on Sept 28, 2012 7:05:24 GMT -8
Soo. . . .
<span id="bannerlogin" style="display: none"><form onsubmit="disable(this); if(location.href.indexOf('action=logout')==-1)this.redirect.value=location.href; " name="sideloginform" method="post" action="/index.cgi" > <input type="hidden" name="redirect" value="/index.cgi" > <input type="hidden" value="login2" name="action"> <img src="http://s3.images.proboards.com/blank.gif" onload="document.getElementById('sidelogout').style.display=(pb_username=='Guest '?'none':'')"/> <table width="100%" cellspacing="3" cellpadding="0" border="0"> <tbody><tr> </center> <td><center><input type="text" style="font-family: arial; text-align: left; font-size: 9px;" maxlength="18" tabindex="3001" size="9" name="username"> <input type="password" style="font-family: arial; text-align: left; font-size: 9px;" tabindex="3002" size="9" name="password"> <input type="submit" font-size="10" font-family="arial" tabindex="3004" value="swap" name="loginbtn"> </center></td></tr> </tbody></table> </center> </form> </span>
|
|
|
Post by Streamstrider on Oct 8, 2012 7:24:35 GMT -8
*pokes Wormo* Did I edit that code right?
|
|
|
Post by Wormopolis on Oct 8, 2012 8:26:10 GMT -8
sorry.. I forgot about this.
remove the </center> tag you have after the <tr> tag. when it comes to tables, you CANT put any non table associated tag inside unless its inside the td.
<table><thead><tbody><tr><td> are all table associated tags (plus some others). everything between <table> and <td> must be table associated. inside the <td> you can put whatever html you want. same with closing tags, nothing but table associated between </td> and </table>
Im looking for more errors on the site now.
|
|
|
Post by Wormopolis on Oct 8, 2012 8:31:20 GMT -8
"things askew"
you mean the forum tables compared to top table?
|
|
|
Post by Streamstrider on Oct 14, 2012 18:07:32 GMT -8
I mean how the main tables aren't aligned with the forum tables, yes, and also, I'd like to include the "recently participated topics"/ad table inside the bordered area.
EDIT: The bottom border image also has a gap between itself and the middle image.
|
|
|
Post by Wormopolis on Oct 15, 2012 22:09:42 GMT -8
body table tr td table.bordercolor, body table.bordercolor
the CSS you have setting that to 900 is what is doing part of the squeezing.
|
|
|
Post by Streamstrider on Oct 17, 2012 6:34:12 GMT -8
How do I edit that to fix the problem? In my head, I can't see how it's causing the problem at hand. XD Sorry I'm a little slow with it.
EDIT: Should I take out the image border code and let you see what it looks like then?
|
|
|
Post by Wormopolis on Oct 17, 2012 12:30:28 GMT -8
you have a 1100 px wide table trying to be squeezed into a 900px wide table. the inner table (the boards) are also set to 900px. so its like
900 -> 1100 -> 900
which is what is justifying the boards to the left side.
remove the CSS (or comment it out). everything should be lined up then. you have a mix of CSS resize and javascript resizing going on, so you will probably have to go with JUST javascript. and the 1100 px table being put into a 900px table is going to have to be rethought.
|
|
|
Post by Streamstrider on Oct 18, 2012 17:53:30 GMT -8
I'll probably have to go another route then. . . . Remember we already had trouble with the forum resize, which is why both are there. But I get what you're saying, so I'll see what I can do before seeking other types of solutions. XD
|
|
|
Post by Streamstrider on Oct 18, 2012 20:06:45 GMT -8
Gah! I finally figured out that I could use a different border code, but now I'm lost as to how to get the banner (although I want it transparent), menu, and thread box BACK inside the border. HELP PLEASE! *flails*
|
|
|
Post by Wormopolis on Oct 18, 2012 21:32:53 GMT -8
well remember the tables are normally set to 92% of whatever their parent container is. so since you have them in a 900px container, they are 828px. do you want the overall forum width to be 900 or 1100?
|
|
|
Post by Streamstrider on Oct 19, 2012 6:27:03 GMT -8
I commented out the CSS forum resize and changed border codes, so I think the issue now is a bit different. Look again at the current version. I made a screenshot to help show you visually what I'm wanting: Basically, everything seems fine now except for what is mentioned in the picture. When I tried using the "transparent welcome table" code, it didn't work, and while I can manage having the threads table above the banner, I'd prefer that it remain below the banner.
|
|
|
Post by Streamstrider on Nov 9, 2012 8:55:27 GMT -8
*pokes Wormo with a pencil*
|
|