First off, I started messing with a working footer and not making a copy first. I know better, but wasn't thinking. I have several problems that have come up. When the footer inserts into the page, the "Created and Modified" part of each page is now off center. It also doesn't run the script to insert my email address after "Website Created and Maintained by." All of this ran perfectly before. Not sure what I added or deleted in the code. Also, could someone tell me how to center the navigation buttons in the footer? I would like to do 4 buttons on the first row, and three on the following rows to make 13. I know I need to redo all these pages and update the HTML version, etc. But, for right now, I just want to get it "functioning" until I have the time to allot to fixing it the "right" way. Thanks. Jenny The website is http://www.rootsweb.ancestry.com/~azmwwduv/
Jenny, Would this help? https://web.archive.org/web/20150906140551/http://www.rootsweb.ancestry.com/~azmwwduv/
Jenny, Reorganize your table as per:- <!--// <table id="bLinks"><tr> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> </tr><tr> <td colspan="4"> <table><tr> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> </tr><tr> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> </tr><tr> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> <td><a href="#"><img src="#"></a></td> </tr></table> </td></tr></table> //--> ... and the styles to use are:- #bLinks { width:650px; } #bLinks table { width:75%; } #bLinks, #bLinks table { border:none; border-spacing:0; border-collapse:collapse; text-align:center; vertical-align:middle; margin:0 auto; } #bLinks img { width:154px; height:41px; } I'll have a look at the Footer issues later. Barry On 26/09/2015 12:04, Jenny Volker via wrote: > Also, could someone tell me how to center the navigation buttons in > the > footer? I would like to do 4 buttons on the first row, and three on > the > following rows to make 13. > > Thanks. > > The website is http://www.rootsweb.ancestry.com/~azmwwduv/ >
Jenny, The following will probably do what you want in the footer; <p style="text-align: center; font-family: 'Americana BT','Times New Roman',Times,Serif; font-size: 12px; font-style: italic;">Copyright © 2006-2015, Margaret Warner Wood Tent, DUVCW<br> http://www.rootsweb.ancestry.com/~azmwwduv<br> Website Created and Maintained by <script language="javascript"><!-- var targetEtag = 'Jennifer Volker'; var targetEname = 'jlvolker2'; var targetEserver = 'cox.net'; targetE = '@'; targetE = (targetEname + targetE + targetEserver); document.write('<a href=' + 'mail' + 'to:' + targetE + '>' + targetEtag + '</a>') //--></script></p> Barry ------------------ On 26/09/2015 12:04, Jenny Volker via wrote: > > I have several problems that have come up. When the footer inserts > into the > page, the "Created and Modified" part of each page is now off center. > It > also doesn't run the script to insert my email address after "Website > Created and Maintained by." All of this ran perfectly before. Not > sure what > I added or deleted in the code. >
Jenny, I think that if you are using javascript to scramble the email address, you may as well use the script to update the copyright year. That being the case, the easiest way is to make the script the sole content between the <p></p> tags. <script language="javascript"> var d=new Date(),n=d.getFullYear(),targetEtag='Jennifer Volker',targetEname='jlvolker2', targetEserver='cox.net',targetE='@',targetE=(targetEname+targetE+targetEserver); document.write('Copyright © 2006-'+n+', Margaret Warner Wood Tent, DUVCW'+'<br>' +'<a href="http://www.rootsweb.ancestry.com/~azmwwduv">http://www.rootsweb.ancestry.com/~azmwwduv</a>'+'<br>' +'Website Created and Maintained by <a href='+'mail'+'to:'+targetE+'>'+targetEtag+'</a>'); </script> Barry ------------------ On 26/09/2015 12:04, Jenny Volker via wrote: > First off, I started messing with a working footer and not making a > copy > first. I know better, but wasn't thinking. > > > > I have several problems that have come up. When the footer inserts > into the > page, the "Created and Modified" part of each page is now off center. > It > also doesn't run the script to insert my email address after "Website > Created and Maintained by." All of this ran perfectly before. Not > sure what > I added or deleted in the code.
Grace, No table, I've just floated the images left and right: <div class="left"> <p class="myButton"> <a href=" http://lists.rootsweb.ancestry.com/index/intl/ENG/SUSSEX-PLUS.html"> Sussex Mailing List</a></p><div style="clear:both;"></div> <p class="myButton"><a href="http://www.kent-opc.org/opcfamilydata/index.php">Kent Family Garden </a></p><div style="clear:both;"></div> <p class="myButton"> <a href=" http://sussexlookup.tripod.com/cgi-bin/sussex_look-up_exchange.htm"> Sussex Look-Up Exchange</a></p><div style="clear:both;"></div> <p class="myButton"> <a href="http://www.sussex-opc.org"> Sussex Online Parish Clerk</a></p><div style="clear:both;"></div></div> <div class="right"> <p class="myButton"> <a href="http://www.knightroots.co.uk/">Knightroots</a></p><div style=" clear:both;"></div> <p class="myButton"> <a href=" http://www.genuki.org.uk/big/eng/SRY/">Genuki Surrey </a></p><div style=" clear:both;"></div> Valerie On 27 September 2015 at 01:39, Barry Carlson via < [email protected]> wrote: > Jenny, > > I think that if you are using javascript to scramble the email address, > you may as well use the script to update the copyright year. That being > the case, the easiest way is to make the script the sole content between > the <p></p> tags. > > <script language="javascript"> > var d=new Date(),n=d.getFullYear(),targetEtag='Jennifer > Volker',targetEname='jlvolker2', > targetEserver='cox.net > ',targetE='@',targetE=(targetEname+targetE+targetEserver); > document.write('Copyright © 2006-'+n+', Margaret Warner Wood Tent, > DUVCW'+'<br>' > +'<a > href="http://www.rootsweb.ancestry.com/~azmwwduv"> > http://www.rootsweb.ancestry.com/~azmwwduv</a>'+'<br>' > +'Website Created and Maintained by <a > href='+'mail'+'to:'+targetE+'>'+targetEtag+'</a>'); > </script> > > Barry > > ------------------ > > On 26/09/2015 12:04, Jenny Volker via wrote: > > First off, I started messing with a working footer and not making a > > copy > > first. I know better, but wasn't thinking. > > > > > > > > I have several problems that have come up. When the footer inserts > > into the > > page, the "Created and Modified" part of each page is now off center. > > It > > also doesn't run the script to insert my email address after "Website > > Created and Maintained by." All of this ran perfectly before. Not > > sure what > > I added or deleted in the code. > > > ------------------------------- > To unsubscribe from the list, please send an email to > [email protected] with the word 'unsubscribe' without > the quotes in the subject and the body of the message >