Peter Bendall
inherit
-5329368
0
Nov 28, 2024 0:18:07 GMT -8
Peter Bendall
0
January 1970
GUEST
|
Post by Peter Bendall on May 26, 2013 8:56:34 GMT -8
I have "javascript" nav-panel to insert in the footer, it inserts "next site" "previous site" and "random"....
Just inserting the javascript "right out of the box" is all right with the text going to the right links BUT when the javascript includes graphics, I.E., Webring Icons, the graphics overlays the text, and the backround colour is missing.
As it happens, I have an HTML version of the Nav-panel which I could use and I realised that the "table" just isnt generated in your footer code!
<table bgcolor="#AAAAAA" cellspacing=0 border=2><tr><td> <table cellpadding=2 cellspacing=0 border=0><tr><td align=center> <font face=arial size=-1>This site is a member of <A HREF="http://shout.webring.com/cgi-bin/login">WebRing</A>. <br> To browse visit <a href="http://ss.webring.com/navbar?f=l;y=bendall;u=10196428">Here</a>.</font> </td></tr></table></td></tr></table>
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 29, 2013 21:38:17 GMT -8
Try this:
<table style="background-color:#AAAAAA;" cellspacing=0 border=2><tbody><tr><td> <table cellpadding=2 cellspacing=0 border=0><tr><td align=center> <font face=arial size=-1>This site is a member of <A HREF="http://shout.webring.com/cgi-bin/login">WebRing</A>. <br> To browse visit <a href="http://ss.webring.com/navbar?f=l;y=bendall;u=10196428">Here</a>.</font> </td></tr></table></td></tr></tbody></table>
I just changed how you add the background using this:
style="background-color:#AAAAAA;"
And added tbody to your table: <tbody>
and for closing
</tbody>
|
|