Sheila, As you will already know, WebPlus 4 is a upmarket webpage WYSIWYG editor. Developed by SERIF, a well known purveyor of Graphics software, they have incorporated a large variety of that software into their webpage products. My examination of the User Manual (320 pages) shows that they have provided extensive tutorials, but I often wonder if the time spent getting your head around every subject in the manual could be better spent getting to grips with the basics of HTML coding. In the WebPlus 4 product, I note that extensive use is made of dragging objects into the desired position on a page, which ultimately requires the software to produce a large amount of HTML / CSS positioning code. This leads to what is commonly called "code bloat". I have also found that Javascript and the jQuery library version of it are used heavily. There are a number of features available in the package that wouldn't be permitted on FreePages, such as e.commerce scripts and video player implementations. Additional HTML code can be inserted in certain areas of each page, but the software produced code is not editable, i.e. doing so will lead to internal errors. Overall, the extensive use of graphics interfaces provides the ability to produce good looking webpages, though at the expense of "code bloat". On a positive note, I could find no evidence of server-side scripting, e.g. PHP etc.. Barry -------------------- On 18/10/2015 03:18, Sheila Priest via wrote: > I've used freepages previously for hosting a couple of websites but > they were both created several years ago using Front Page. I now > have Web Plus v4 and am wondering if this is compatible with rootsweb > freepages? > Many thanks > Sheila > > > ------------------------------- > 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
If you have Firebug addon for Firefox you can open the background image in a new tab and then save. Firebug is kind of like "View Source" on steroids. It opens an area below the page with the source in it. It has all sorts of neat features to help debug a webpage. On 10/18/2015 10:53 PM, Barry Carlson via wrote: > The "right-click" background-image Save function is > not available in any of the browsers - for a very good reason; the > background-image is in a "pseudo element" - #content::before, i.e. a > fake or non existent element. -- A cat is a puzzle with no solution. Cats are tiny little women in fur coats. When you get all full of yourself try giving orders to a cat. _ _... ..._ _ _._ ._ ..... ._.. ... .._
I'm not familiar with Web Plus (any version) but I can say this: The key is what kind of web pages it produces. If it produces standard HTML or standard HTML with CSS, it should work with Freepages. But, if it relies on "dynamic content" (essentially a database approach) it won't work. Such an approach tends to rely on server-side scripts, not allowed on Freepages. You can probably tell by inspecting the page files with a plain-text editor, like Notepad. Look for calls to external scripts with filename extensions like .aspx or .php. -rt_/) Date: Sat, 17 Oct 2015 16:18:14 +0200 (CEST) From: Sheila Priest <[email protected]> Subject: [FreeHelp] Web Plus v4 To: [email protected] Message-ID: <[email protected]> Content-Type: text/plain; charset=UTF-8 I've used freepages previously for hosting a couple of websites but they were both created several years ago using Front Page.? I now have Web Plus v4 and am wondering if this is compatible with rootsweb freepages? Many thanks Sheila
I've used freepages previously for hosting a couple of websites but they were both created several years ago using Front Page. I now have Web Plus v4 and am wondering if this is compatible with rootsweb freepages? Many thanks Sheila
-------- Original Message -------- Subject: Re: [FreeHelp] Playing with CSS Image Filters Date: Wed, 14 Oct 2015 08:48:59 +1300 From: Barry Carlson <[email protected]> To: Valerie lirakis <[email protected]> Valerie, No more than a problem with Copying & Pasting! It will work correctly in Firefox, but not in IE, Chrome or Opera. http://freepages.rootsweb.ancestry.com/~bristowe/css-rules-valerie.html NB: I've added a couple of styles to place the FP Footer at the bottom of the page, and declared the #c00 color in the #content div to avoid conflict with the Footer. Barry On 14/10/2015 02:18, Valerie lirakis wrote: > Barry, > I've experimented with this, changed some of the format and uploaded > my file. Viewing it in Firefox doesn't appear any different to IE or > Chrome. What am I doing wrong? > http://freepages.genealogy.rootsweb.ancestry.com/~boltongenealogy/bolton4.html
There are many facets of image manipulation that are now possible using HTML / CSS attributes that once were confined to specialist software. Recently I have had occasion to use the CSS "transform" property to match known shapes up with airborne images of missing aircraft parts floating in the sea. Yes, this gets quite sophisticated, as a plan 2d view has to be rotated and matched in 3d planes, including using the "perspective" property to see if a match is possible. Another source of image manipulation is that based by the current CSS "filter" selector, in which a multiple number of filters can be used in a CSS declaration to observe information contained within an image that otherwise would remain unseen. Available in the "filter" selector are the following functions:- filter: url() blur() brightness() contrast() drop-shadow() grayscale() hue-rotate() invert() opacity() saturate() sepia(); ... and they can be declared in a multiple statement - as above and as indicated by the "()" brackets as functions. I suggest you refer to:- https://developer.mozilla.org/en-US/docs/Web/CSS/filter ... where you will find details on how to declare those functions and the units they work with. In the meantime, I've created a test page which allows the dynamic implementation of six of those functions commonly used, so that a quick summation of how they work can be made by with input[range] slider selections:- http://countjustonce.com/test/css-rules.html This page will only render correctly when using an up to date version of the Firefox browser, and probably will in the other major browsers provided I spend some time adding vendor prefixes to a number of styles. Feel free to download the file and test it locally yourself. Any repeating image can be used, provided you change the existing "url('images/blue-grid.jpg)" in the #content:before CSS selector with a link to your image . You will be amazed with the combination of filters and their combined effects to the background image. To reset to the basic format, use Ctrl+F5 and you will note the input sliders will move to their preset positions. Barry
Barry, I've experimented with this, changed some of the format and uploaded my file. Viewing it in Firefox doesn't appear any different to IE or Chrome. What am I doing wrong? http://freepages.genealogy.rootsweb.ancestry.com/~boltongenealogy/bolton4.html Valerie On 13 October 2015 at 10:04, Barry Carlson via <[email protected]> wrote: > There are many facets of image manipulation that are now possible using > HTML / CSS attributes that once were confined to specialist software. > Recently I have had occasion to use the CSS "transform" property to > match known shapes up with airborne images of missing aircraft parts > floating in the sea. Yes, this gets quite sophisticated, as a plan 2d > view has to be rotated and matched in 3d planes, including using the > "perspective" property to see if a match is possible. > > Another source of image manipulation is that based by the current CSS > "filter" selector, in which a multiple number of filters can be used in > a CSS declaration to observe information contained within an image that > otherwise would remain unseen. Available in the "filter" selector are > the following functions:- > > filter: url() blur() brightness() contrast() drop-shadow() grayscale() > hue-rotate() invert() opacity() saturate() sepia(); > > ... and they can be declared in a multiple statement - as above and as > indicated by the "()" brackets as functions. > > I suggest you refer to:- > > https://developer.mozilla.org/en-US/docs/Web/CSS/filter > > ... where you will find details on how to declare those functions and > the units they work with. > > In the meantime, I've created a test page which allows the dynamic > implementation of six of those functions commonly used, so that a quick > summation of how they work can be made by with input[range] slider > selections:- > > http://countjustonce.com/test/css-rules.html > > This page will only render correctly when using an up to date version > of the Firefox browser, and probably will in the other major browsers > provided I spend some time adding vendor prefixes to a number of styles. > > Feel free to download the file and test it locally yourself. Any > repeating image can be used, provided you change the existing > "url('images/blue-grid.jpg)" in the #content:before CSS selector with a > link to your image . You will be amazed with the combination of filters > and their combined effects to the background image. To reset to the > basic format, use Ctrl+F5 and you will note the input sliders will move > to their preset positions. > > Barry > > > > ------------------------------- > 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 >
Thanks to all who emailed and posted ways to help. I am still working on it and may have more questions, but you guys gave me a great start. Thanks again, Jenny Volker
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.
Valerie Could I please have the name of the program you used to make the table. Thanks. Gracie Jenny, Have a look at my web page which has four rows of two columns, and the remaining odd column centered underneath, which I think would look more balanced than having the top row with four columns, and the rest with 3. http://freepages.genealogy.rootsweb.ancestry.com/~sussexgenealogy/sussex_lin ks.html Valerie On 26 September 2015 at 11:23, JFlorian via <[email protected]> wrote: > Jenny, > > Would this help? > > https://web.archive.org/web/20150906140551/http://www.rootsweb.ancestr > y.com/~azmwwduv/ > > ------------------------------- > 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 > ------------------------------- 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 ----- No virus found in this message. Checked by AVG - www.avg.com Version: 2015.0.6140 / Virus Database: 4419/10700 - Release Date: 09/25/15
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. >
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 >
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/ >
This page is generated by the Legacy genealogy program creating a website. The text in the research notes for the individual is this – formatting as shown: Military and other life History Click «a HREF=http://www.tunnellers.net/pages/pf__pag.html target=_blank»here«/a» and scroll down the list to his name. There is also some more information on his brother, Mark. 104 But the output is this: \ulMilitary and other life History \ulnoneClick here\b0 and scroll down the list to his name. There is also some more information on his brother, Mark. 104 (The 104 is a source footnote reference – but I can’t see how it got there!) Any help in straightening it out greatly appreciated. Thankyou. Bryan Christchurch NZ The URL is here: http://freepages.genealogy.rootsweb.ancestry.com/~parrottandbell/parrott/71.html
Jenny, Have a look at my web page which has four rows of two columns, and the remaining odd column centered underneath, which I think would look more balanced than having the top row with four columns, and the rest with 3. http://freepages.genealogy.rootsweb.ancestry.com/~sussexgenealogy/sussex_links.html Valerie On 26 September 2015 at 11:23, JFlorian via <[email protected]> wrote: > Jenny, > > Would this help? > > https://web.archive.org/web/20150906140551/http://www.rootsweb.ancestry.com/~azmwwduv/ > > ------------------------------- > 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 >
In edge I did shift= F12 and nothing happens :-( -----Original Message----- From: Barry Carlson via Sent: Friday, September 25, 2015 4:02 PM To: hutley Cc: freepages-help Subject: Re: [FreeHelp] Windows 10 and viewing code Hello Heidi, Microsoft have a knack of being different! You will have two MS browsers directly available to you when using Windows 10 O/S. They are IE11 and MS Edge (which is pinned to the Taskbar). When using IE11, the source code is viewed by using Ctrl+U, which brings up the debugger page at the bottom of the screen. If using MS Edge, the default browser, use Shift+F12 to open up the debugger page in a new tab. Be careful to use the Shift key with F12, else you will probably turn your WiFi off. The safest method is to Right Click and select View Source which will bring up the debugger page directly. Note; when in the debugger mode you can select the Emulation mode and have your page render as it would in older IE browsers. Regards, Barry On 26/09/2015 06:30, Heidy wrote: > Hi Barry, > > Can you tell me how to view the code of my webpage in Windows 10. The > only way I can see the code is by opening filemanager/html. When I > right click on my website and select “view source” I get an odd > looking screen with nothing on it. Guess my web knowhow is pretty > limited. Would appreciate hearing from you. > > Thank you, > > Heidi Boos-Utley > Email: [email protected] > URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily ------------------------------- 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
Hello Heidi, Microsoft have a knack of being different! You will have two MS browsers directly available to you when using Windows 10 O/S. They are IE11 and MS Edge (which is pinned to the Taskbar). When using IE11, the source code is viewed by using Ctrl+U, which brings up the debugger page at the bottom of the screen. If using MS Edge, the default browser, use Shift+F12 to open up the debugger page in a new tab. Be careful to use the Shift key with F12, else you will probably turn your WiFi off. The safest method is to Right Click and select View Source which will bring up the debugger page directly. Note; when in the debugger mode you can select the Emulation mode and have your page render as it would in older IE browsers. Regards, Barry On 26/09/2015 06:30, Heidy wrote: > Hi Barry, > > Can you tell me how to view the code of my webpage in Windows 10. The > only way I can see the code is by opening filemanager/html. When I > right click on my website and select “view source” I get an odd > looking screen with nothing on it. Guess my web knowhow is pretty > limited. Would appreciate hearing from you. > > Thank you, > > Heidi Boos-Utley > Email: [email protected] > URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily
Remove the /ul from the following line [ and any other place it shows up on your page ]: <p style="margin-left:0.5in"><font SIZE="-1">\ul<b>Military and other life History<br><br>\ulnone</b>Click <a HREF=http://www.tunnellers.net/pages/pf__pag.html <view-source:http://www.tunnellers.net/pages/pf__pag.html> target=_blank><b>here\b0</a>and scroll down the list to his name. There is also some more information on his brother, Mark.<br></b><A HREF="sources.html#104 <view-source:http://freepages.genealogy.rootsweb.ancestry.com/%7Eparrottandbell/parrott/sources.html#104>"><sup>104</sup></a></font></p><img src="line15.gif <view-source:http://freepages.genealogy.rootsweb.ancestry.com/%7Eparrottandbell/parrott/line15.gif>" align=middle width="100%" height="10" border="0" alt=picture> It looks like the re is a bug in the programming that makes Legacy generate HTML. On 09/26/2015 12:12 AM, Bryan via wrote: > This page is generated by the Legacy genealogy program creating a website. > > The text in the research notes for the individual is this – formatting as shown: > > Military and other life History > Click «a HREF=http://www.tunnellers.net/pages/pf__pag.html target=_blank»here«/a» and scroll down the list to his name. There is also some more information on his brother, Mark. 104 > > But the output is this: > \ulMilitary and other life History > > \ulnoneClick here\b0 and scroll down the list to his name. There is also some more information on his brother, Mark. > 104 (The 104 is a source footnote reference – but I can’t see how it got there!) > Any help in straightening it out greatly appreciated. Thankyou. > > Bryan > Christchurch NZ > > > The URL is here: > http://freepages.genealogy.rootsweb.ancestry.com/~parrottandbell/parrott/71.html > > ------------------------------- > 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 -- A cat is a puzzle with no solution. Cats are tiny little women in fur coats. When you get all full of yourself try giving orders to a cat. _ _... ..._ _ _._ ._ ..... ._.. ... .._
Jenny, Would this help? https://web.archive.org/web/20150906140551/http://www.rootsweb.ancestry.com/~azmwwduv/
Hi Lonnie, I think your index page would benefit by a little more presentation - firstly by making the index more central, as having it all on the left gives the page an unbalanced look. Also the text size needs to be larger, especially for older people, such as myself, who have to peer to see the letters. Another improvement would be to reduce the number of images to maybe no more than 6 to a page, as I spent quite a lot of time trying to find the entry that corresponded to the number. Look at my web page to see how I've done a similar thing to yours. http://freepages.genealogy.rootsweb.ancestry.com/~boltongenealogy/marriage_licences1/marriage_licenses1.html Valerie On 24 September 2015 at 23:59, Lonnie Fink via <[email protected]> wrote: > Billie, > > I already fixed the program, the old way, but I'll do the other programs > your way! > Reduces code, which I do like! > > Thanks! > > Lonnie fink > [email protected] > > > On Sep 24, 2015, at 5:51 PM, [email protected] wrote: > > > > Message: 3 > > Date: Thu, 24 Sep 2015 14:39:24 -0500 > > From: Billie Walsh <[email protected]> > > Subject: Re: [FreeHelp] Newby needs help getting href links to work on > > freepages > > To: [email protected] > > Message-ID: <[email protected]> > > Content-Type: text/plain; charset=windows-1252; format=flowed > > > > My first suggestion is to put all your images into a directory separate > > from the HTML pages. Save yourself a headache later. I usually use > > either "images" or "pics" for the name of my image directories. That way > > I can look at the directory structure and know what's in that directory. > > > > Second, I use relative links. In my use the link would be <a > > href="images/pg501jpg">. Compare that with your links. > > > > Third, you have two sets of quotes in your links: > > > > ""http://..........................jpg"" > > > > Take out one set and the links will work. > > > ------------------------------- > 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 >