|
Post by tunescool on Aug 5, 2010 19:51:43 GMT -8
all i wanna do is put a line after this table, cellspacing just puts a border around it and changes its width. everything i do breaks up the tables and puts a line between the them. ive tried the <hr> before and after everything possible. i took all the links out its way nicer now with the sub boards in the one forum. how can i just get a line under the table.
<table width="800px" cellpadding="2" cellspacing="0" align="center" border-bottom="#000000 1px solid" id="theNotableNook"> <tr> <td width="50%" class="menutable" vAlign="top"> <font size=1 color="00138E"><center><b>
</center></b> </font> </td>
<td width="50%" class="menutable" vAlign="top"> <font size=1 color="00138E"><br /><center><b> Coming Soon - Thumbnailed Archives<br />Grouped By Year, Month And Photoshoot, Paparazzi, Etc...<br /> Join And Post Some Of Your Pics, Old Or New, HQ Or LQ </b></center><br /></font> </td> </tr> </table><hr width="800px";>
ive been having major problems with your infocenter relocation showing up up there. ill start a new thread someday. i didnt or havent changed anything in my main footers. it doesnt want to show up in any of my 4 testboards either, which are all different codes, i didnt add or change anything
|
|
|
Post by Wormopolis on Aug 6, 2010 0:06:14 GMT -8
I see a line...
or were you wanting it thinner?
|
|
|
Post by Wormopolis on Aug 6, 2010 0:11:31 GMT -8
and the info center relocate code will have to go above the info center remodel you have or it cannot find the pieces it needs.
|
|
|
Post by tunescool on Aug 6, 2010 21:12:28 GMT -8
the infocenter relocation does work now that you told me it should be before the ic code. all i have rite now is 2 lines in 2 seperate cells which i tried but they wouldnt go 100%(width) and i had to add <br/>s and they wont line up. before i had it after the </table> so there was background(the black) and an <hr/> line in between 2 tables
|
|
|
Post by Wormopolis on Aug 6, 2010 22:57:41 GMT -8
that code you have for the HR line has all sorts of stuff in it that shouldnt be there.. it should JUST be <hr width=800>
|
|
|
Post by tunescool on Aug 6, 2010 23:52:06 GMT -8
but where, where i have it the text in the rite table is centered in the whole thing and it made the whole table bigger than the rest
|
|
|
Post by Wormopolis on Aug 7, 2010 1:43:46 GMT -8
I thought you wanted the line to go across. change the 800 to 100% then
|
|
|
Post by tunescool on Aug 7, 2010 2:46:14 GMT -8
its just in the second cell, how can i get it to go across the whole table
|
|
|
Post by Wormopolis on Aug 7, 2010 4:33:05 GMT -8
if it is in that cell you cant because you cant break out of the elemnt it is contained in.
try adding a new row to that table, with one cell. give the cell a colspan of 2. then put the hr bar inside THAT cell.
<tr><td colspan=2><hr width='100%'></td></tr>
|
|
|
Post by tunescool on Aug 7, 2010 5:10:02 GMT -8
i still get the tables broken up. i have it still in the table?
<td width="50%" class="menutable" vAlign="top"> <font size=1 color="00138E"><br /><center><b> Coming Soon - Thumbnailed Archives<br />Grouped By Year, Month And Photoshoot, Paparazzi, Etc...<br /> Join And Post Some Of Your Pics, Old Or New, HQ Or LQ </b></center></font><br /> </td> </tr><tr><td colspan=2><hr width='100%'></td></tr> </table>
|
|
|
Post by Wormopolis on Aug 7, 2010 22:45:53 GMT -8
you put the new row inside the cell. should look like:
<table width="800px" cellpadding="2" cellspacing="0" align="center" id="theNotableNook"> <tr> <td width="50%" class="menutable" vAlign="top"> <font size=1 color="00138E"><center><b>
</b></center> </font> </td>
<td width="50%" class="menutable" vAlign="top"> <font size=1 color="00138E"><br /><center><b> Coming Soon - Thumbnailed Archives<br />Grouped By Year, Month And Photoshoot, Paparazzi, Etc...<br /> Join And Post Some Of Your Pics, Old Or New, HQ Or LQ </b></center></font><br /> </td></tr> <tr><td colspan=2 class="menutable"><hr width='100%'></td></tr> </table>
compare the two to see where you went wrong.
|
|
|
Post by tunescool on Aug 7, 2010 23:05:17 GMT -8
i had it rite after the </tr> just like you did, it doesnt matter that theres a new line after the </tr> does it, just the appearance of the html?
like yours
</td></tr> <tr><td colspan=2 class="menutable"><hr width='100%'></td></tr> </table>
after the </tr> you hit return and have a new line
well theres a line i was looking for there now. what a big deal to just put a line in. is that hr line just like the ones in the signature that wont extend all the way to the opposite vertical lines. sorry about all this hassle just for something so simple dude, thanks
|
|
|
Post by Wormopolis on Aug 8, 2010 2:25:42 GMT -8
when I looked at your source you had these 2 lines swapped:
</td></tr> <tr><td colspan=2 class="menutable"><hr width='100%'></td></tr>
and that DOES make a big difference.
as for the hr line extending to the ends, hr lines are affected by things like cell padding. the only way to get it all the way out would be to remove all the cell padding from the tables, but honestly, it looks good like that IMO.
|
|
|
Post by tunescool on Aug 9, 2010 0:35:36 GMT -8
i made the first cell into two cells and didnt touch the html you gave me but look how it showsup
|
|
|
Post by Wormopolis on Aug 9, 2010 2:04:06 GMT -8
since you added a column, change the colspan to 3
|
|