Note: The Rootsweb Mailing Lists will be shut down on April 6, 2023. (More info)
RootsWeb.com Mailing Lists
Total: 6/6
    1. [FreeHelp] Footer issues
    2. Jenny Volker via
    3. 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/

    09/25/2015 10:04:28
    1. Re: [FreeHelp] Footer issues
    2. JFlorian via
    3. Jenny, Would this help? https://web.archive.org/web/20150906140551/http://www.rootsweb.ancestry.com/~azmwwduv/

    09/26/2015 12:23:31
    1. Re: [FreeHelp] Footer issues
    2. Barry Carlson via
    3. 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/ >

    09/27/2015 04:22:00
    1. Re: [FreeHelp] Footer issues
    2. Barry Carlson via
    3. 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 &copy; 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. >

    09/27/2015 04:51:28
    1. Re: [FreeHelp] Footer issues
    2. Barry Carlson via
    3. 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 &copy; 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.

    09/27/2015 07:39:31
    1. Re: [FreeHelp] Footer issues
    2. Valerie lirakis via
    3. 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 &copy; 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 >

    09/27/2015 04:39:33