At 06:36 PM 10/17/2013, you wrote: >Then >I copy table to CSS Template page already validated. >On this page, cell borders don't show; pictures appear haphazardly, top 3 >pushed together, rest vertical under each other.. http://www.css-layouts.org/florian-family/allen_family_home.htm Your current style rules do NOT have a width specified for the td tag. pat
At 06:36 PM 10/17/2013, you wrote: >Sometimes, I make a tiny error, like inserting a double equal sign... e.g. >I usually mess up small things when I copy/paste. >Validator immediately complains there is no = in <...table class="table"> > Says I don't need /table because no table open, and 4 unneeded open tr tags ============= This what you are trying to do? http://www.css-layouts.org/florian-family/allen_family_home.htm You have already set a style rule for the td to text-align to the left so applying the class to center the image is going to be ignored. pat
I don't have any CSS pages uploaded to show (don't want to confuse myself more). Here is an example of a picture with caption table I'm having trouble converting. OLD PAGE http://freepages.family.rootsweb.ancestry.com/~florian/homes-houses/allen_family_home.htm I first remove div /div and center /center tags above / below the table, and any align tags. NOTE: I'm not showing here the brackets on the tags because I Find / Replace just the inside of tags. Then I change these: table border="1" cellpadding="3" cellspacing="0" width="98%" to just table class="table" td width="33%" to just td td width="34%" to just td img border="0" src to img class="imgctr" src Add any missing ALT="whatever". I don't mess with any other tags. Then I copy table to CSS Template page already validated. On this page, cell borders don't show; pictures appear haphazardly, top 3 pushed together, rest vertical under each other.. ---- Sometimes, I make a tiny error, like inserting a double equal sign... e.g. I usually mess up small things when I copy/paste. Validator immediately complains there is no = in <...table class="table"> Says I don't need /table because no table open, and 4 unneeded open tr tags Frontpage picks up something wrong from the second link, right after 'a href=' link etc <!-- begin code--> <table class="table"> <tr> <td> <a href="allen-family/1_allen_house_roscoe_PA.jpg"><img class="imgctr" src="allen-family/thumbs/tn1_allen_house_roscoe_PA_2006_.jpg" ALT="Two-story Red-brick Allen Family Home" width="200" height="129"></a></td> <td> <a href="allen-family/2_allen_house_roscoe_PA_2006_.jpg"><img class="imgctr" src="allen-family/thumbs/tn2_allen_house_roscoe_PA_front_view_2006.jpg" ALT="Front: Two-story Red-brick Allen Family Home" width="200" height="132"></a></td> <td> <a href="allen-family/3_allen_house_roscoe_PA_front_view_2006.jpg"><img class="imgctr" src="allen-family/thumbs/tn3_allen_house_roscoe_PA_side_Underground_RR_hidden_hole.jpg" ALT="Side: Two-story Red-brick Allen Family Home with hidden entrance" width="200" height="129"></a></td> </tr> <tr> <td>Two-story Red-brick Allen Family Home</td> <td>Front: Two-story Red-brick Allen Family Home</td> <td>Side: Two-story Red-brick Allen Family Home with hidden entrance</td> </tr> <tr> <td> <p align="center"><a href="allen-family/4_allen_house_roscoe_PA_looking_West_across_the_tracks.jpg"><img class="imgctr" src="allen-family/thumbs/tn4_allen_house_roscoe_PA.jpg" ALT="Allen Family Home Roscoe PA" width="182" height="200"></a></td> <td>These 2 photos were vexed by faulty printer ink, making both colored by hot pink. I tried to do some color adjustments on both to bring out the green grass, green-blue house roof and reddish roof on the nearer house (left photo). </td> <td><a href="allen-family/5_allen_house_roscoe_PA_side_Underground_RR_hidden_hole.jpg"><img class="imgctr" src="allen-family/thumbs/tn5_allen_house_roscoe_PA_looking_West_across_the_tracks.jpg" ALT="Allen Family Home looking west" width="200" height="155"></a></td> </tr> <tr> <td>Enlargement of the Photo, right side of Allen Family Home</td> <td> <a href="allen-family/6_allen_house_roscoe_PA_side_Underground_RR_hidden_hole_enl.jpg"><img class="imgctr" src="allen-family/thumbs/tn6_allen_house_roscoe_PA_side_Underground_RR_hidden_hole_enl.jpg" ALT="Allen Family Home Underground Railroad Hidden Enclosure" width="155" height="200"></a></td> <td>There is supposed to be a hidden entrance to a secret area used for slaves in the Underground Railroad.</td> </tr> </table> <!-- end code--> CSS /*=============================== Judy added styles for Basic Multi-Column Table with td Content align Left, Headers Centered ================================*/ .table { margin-top: 10px; margin-bottom: 10px; border-collapse: collapse; border: 1px gray solid; width: 100%; } .table th { padding: 8px; border: 1px gray solid; text-align: center; background-color:#003366; color: #ab5454; } .table td { padding: 8px; border: 1px gray solid; text-align: left; } Can anyone spot a glaring error? Thank you, Judy
> >How many classes can be added in markup to p class= ? Example: could I >have p class="center small strong" (not that I'd want that, but as an >example)? > >} Yes you can http://webdesign.about.com/od/css/qt/tipcssmulticlas.htm pat
> >How many classes can be added in markup to p class= ? Example: could I >have p class="center small strong" (not that I'd want that, but as an >example)? > >} Yes you can http://webdesign.about.com/od/css/qt/tipcssmulticlas.htm pat
I added it at the end of Pat G's styles--- Is it right for that section? How many classes can be added in markup to p class= ? Example: could I have p class="center small strong" (not that I'd want that, but as an example)? } /* ==================== general TEXT typograhic styles class new { background-color: #FF00FF;} ====================== */ .center { text-align: center; } .small { font-size:small; } .new { background-color: #ab5454; } .strong { font-weight:bold; } --- I ran into some trouble converting a Frontpage table to CSS.... It was going along fine, but halfway done, it made one very long row extending many 'pages' to the right. I realized I didn't get the /tr td correct. When I added those back in, what should have been the last half of the table became the middle rows ... so it messed up alphabetical presentation. But.... I already saved it. Is there any simple way to move those rows to where they should be? Or do I just re-start a new conversion from the original page? A bit concerned about other long tables I must convert. Trying to avoid copy-paste to do each cell...instead I use Find/Replace for tags. Realized Frontpage likes to search "it's way" sometimes, so it doesn't always change longer tags, or it only changes part of tags... grr. Otherwise, switching pages to CSS markup is going pretty well. Every finished page validates--- hooray!. Thanks Barry. Judy
On links presented one after another (not in html "list"), and I use p class="center" and I want strong, I could just add both tags to front and end of every link. But Validator complained and moved 10 of the 'end' /strong tags to the bottom, after the links presented. As I looked it over, it seems silly to put the tags on every line. Is there an easier way? Can I combine the p center AND strong, adding that markup just ONCE for all the links given? Judy
Jim, Google Maps provide all the information you need ... Just enter https://maps.google.com then in the Google Search Box enter the address of your chosen location. By the time you have finished, Google will have offered you a choice matching the info you entered. Click on the correct location and a full page map with that location in the center will be displayed. To the left of the map proper is a column which probably shows a small street view of the location. Above it is a small link symbol (with a printer symbol on its left). Click on the link symbol, and in the pop-up appearing to the right you will find 'customize and preview map'. Click that link and the new pop-up will provide you with options on size etc.. Select what you want, then copy and paste the code provided at the bottom into your HTML page. Barry -------------------- On Wed, 16 Oct 2013 03:00:56 +1300, Jim Slade <slade33@gmail.com> wrote: > How can I insert a google map of a certain address on a web page? We > want to show location of a venue. > Thanks, Jim > ------------------------------- > To unsubscribe from the list, please send an email to > FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without > the quotes in the subject and the body of the message
Thanks to Barry & Nick for your info, will try out Nicks xl trick sometime..... also just downloaded Blue Griffon and was impressed with its simplicity and functionality, had a web page created/ edited in a few minuites without resorting to any help pages...... Don -- From the scenic Klondike Hills, Grey County, Ontario, Canada. Web site http://freepages.family.rootsweb.ancestry.com/~rawlsofdorset/index.htm <http://freepages.family.rootsweb.ancestry.com/%7Erawlsofdorset/index.htm> Visit my Blog at http://ruralcanadian.blogspot.com/ Democracy requires dialogue, please join us at http://democracyunderfire.blogspot.com/
Don, Sites hosted by Rootsweb/Ancestry do not have the ability of using database programs available to most commercial sites, and therefore there is a small penalty to pay when it comes creating the equivalent database required to provide what you are asking. However, if you are wishing to provide the equivalent of a sideshow of the images in one or more folders/directories, it can be done relatively easily with the use of MS Excel or OpenOffice Calc spreadsheets. They are used to create the array of images and matching text fields that can be used in a JavaScript driven slide show. Yes, just one HTML page, and the images are preloaded and displayed for whatever period you set. On top of that, you can pause the display by placing the cursor on the image, or quickly flick through it by moving the cursor on and off each each image. No widths or heights are declared or required, the JavaScript detects the available height of the window and scales the widths and heights of the images to to fit. Todays browsers are very good at interpolating if an image becomes over-scaled, and provided that over-scaling is not much more than 150%, the rendering covers for the missing pixels. The following example has been adapted from something I posted about 4 years ago, and is HTML5 and viewable in all browsers back to the IE6 era. In IE8 and earlier, the images also fade in & out when switching. http://freepages.computers.rootsweb.ancestry.com/~bristowe/slide-show/ It may or may not be what you are looking for. Barry -------------------- On Sun, 13 Oct 2013 22:52:45 +1300, Rawls Family <rawfam46@gmail.com> wrote: > There has been a lot of chat here re how to display pictures of late, > can someone point me towards a bit of simple code I can insert on a > webpage to read and display all the files/ pictures contained in a > particular folder in a 'slider' fasion- just a simple Next - Back button > to step through them. Please note I am NOT an acomplished HTML coder! > Thanks, Don R
Barry, thank you so much for pointing me in the right direction. Inserting a google map is so simple, it is scary! Thanks, Jim On 10/15/2013 2:33 PM, Barry Carlson wrote: > Jim, > > Google Maps provide all the information you need ... > > Just enter https://maps.google.com then in the Google Search Box enter the > address of your chosen location. By the time you have finished, Google > will have offered you a choice matching the info you entered. Click on the > correct location and a full page map with that location in the center will > be displayed. > > To the left of the map proper is a column which probably shows a small > street view of the location. Above it is a small link symbol (with a > printer symbol on its left). Click on the link symbol, and in the pop-up > appearing to the right you will find 'customize and preview map'. Click > that link and the new pop-up will provide you with options on size etc.. > Select what you want, then copy and paste the code provided at the bottom > into your HTML page. > > Barry > -------------------- > On Wed, 16 Oct 2013 03:00:56 +1300, Jim Slade <slade33@gmail.com> wrote: > >> How can I insert a google map of a certain address on a web page? We >> want to show location of a venue. >> Thanks, Jim >> ------------------------------- >> To unsubscribe from the list, please send an email to >> FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without >> the quotes in the subject and the body of the message > >
How can I insert a google map of a certain address on a web page? We want to show location of a venue. Thanks, Jim
Don Simple code would probably mean a HTML shell for each file. If the list of files is long you would want a way to automatically generate the files. I often do this sort of repetitive task using Excel macros. The link below is to an index file and files generated by some code. http://members.iinet.net.au/~nickred/tools/my_pic_index.html The Excel file is at the following link: http://members.iinet.net.au/~nickred/tools/picture_viewer.xlsm Save it to the folder with the photos (.jpg) files, open the file, enable macros and press the "load file names" button. Add your descriptions then press the "Export HTML files" button. Regards Nick My Sites My home <http://members.iinet.net.au/%7Enickred/> My newspaper extracts <http://members.iinet.net.au/%7Enickred/newspaper/index.html> Registry of Deeds Index Project <http://freepages.genealogy.rootsweb.com/%7Eregistryofdeeds/index.html> Managed Sites Irish Genealogical Research Society <http://www.igrsoc.org/index.htm> Majura tennis Club <http://members.iinet.net.au/%7Enickred/majuratennis/> On 14/10/2013 6:00 PM, freepages-help-request@rootsweb.com wrote: Date: Sun, 13 Oct 2013 05:52:45 -0400 From: Rawls Family<rawfam46@gmail.com> Subject: [FreeHelp] Slider software / code To:freepages-help@rootsweb.com Message-ID:<525A6D6D.7000402@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed There has been a lot of chat here re how to display pictures of late, can someone point me towards a bit of simple code I can insert on a webpage to read and display all the files/ pictures contained in a particular folder in a 'slider' fasion- just a simple Next - Back button to step through them. Please note I am NOT an acomplished HTML coder! Thanks, Don R
Something like this Don? http://ajaxslideshow.com/microsoft-expression-web-photo-slide-show.html My best wishes, Jill -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of Renate Sent: 14 October 2013 15:41 To: freepages-help@rootsweb.com Subject: Re: [FreeHelp] FREEPAGES-HELP Digest, Vol 8, Issue 156 This is what I was talking about, yesterday. Freepages. :) On Oct 14, 2013, at 3:00 AM, freepages-help-request@rootsweb.com wrote: > > > When replying to a digest message, quote only the specific message to which you are replying, removing the rest of the digest from your reply. Remember to change the subject of your reply so that it coincides with the message subject to which you are replying. > ***FREEPAGES HELP & FAQ*** > <http://helpdesk.rootsweb.com/FAQ/fpindex.html> > > > Today's Topics: > > 1. Re: Ext CSS & "th" (JFlorian) > 2. Slider software / code (Rawls Family) > 3. Re: FREEPAGES-HELP Digest, Vol 8, Issue 155 (Bill Thompson) > 4. Re: FREEPAGES-HELP Digest, Vol 8, Issue 155 (Billie Walsh) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 13 Oct 2013 03:45:07 -0400 > From: JFlorian <cageycat@gmail.com> > Subject: Re: [FreeHelp] Ext CSS & "th" > To: "LIST_freepages-help@rootsweb.com" <freepages-help@rootsweb.com> > Message-ID: > > <CAE5hz-B_M2=ToD3Q7mbjYaAE5ZeJAOyNxLZRoOdYgyQys+G+Dg@mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Sat, Oct 12, 2013 at 9:06 AM, Patricia Geary <patgeary@comcast.net>wrote: > >> Why two separate tables? The table header should be part of the 2nd >> table > === > Pat, > > That's why I raised the question, to figure out how to have a > single-cell header with multiple-column table. Barry let me know > about using colspan, which I didn't know before. I'll try it when I'm > able to work again this coming week. > > Judy > > > ------------------------------ > > Message: 2 > Date: Sun, 13 Oct 2013 05:52:45 -0400 > From: Rawls Family <rawfam46@gmail.com> > Subject: [FreeHelp] Slider software / code > To: freepages-help@rootsweb.com > Message-ID: <525A6D6D.7000402@gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > There has been a lot of chat here re how to display pictures of late, > can someone point me towards a bit of simple code I can insert on a > webpage to read and display all the files/ pictures contained in a > particular folder in a 'slider' fasion- just a simple Next - Back > button to step through them. Please note I am NOT an acomplished HTML coder! > Thanks, Don R > -- > > From the scenic Klondike Hills, Grey County, Ontario, Canada. > Web site > http://freepages.family.rootsweb.ancestry.com/~rawlsofdorset/index.htm > <http://freepages.family.rootsweb.ancestry.com/%7Erawlsofdorset/index. > htm> Visit my Blog at http://ruralcanadian.blogspot.com/ > Democracy requires dialogue, please join us at > http://democracyunderfire.blogspot.com/ > > > > ------------------------------ > > Message: 3 > Date: Sun, 13 Oct 2013 07:51:19 -0400 > From: Bill Thompson <billthompson76@gmail.com> > Subject: Re: [FreeHelp] FREEPAGES-HELP Digest, Vol 8, Issue 155 > To: freepages-help@rootsweb.com > Message-ID: <525A8937.1090706@gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: >> Message: 5 >> Date: Sat, 12 Oct 2013 10:23:14 -0500 >> From: "Heidi Utley" <hutley@greenhills.net> >> Subject: [FreeHelp] Off topice - Linux Ubuntu >> To: <freepages-help@rootsweb.com> >> Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> >> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >> reply-type=original >> >> Hi List, >> >> Does anybody know if there is a web editor that can be used in Linux Ubuntu? >> Please let me know if there is a list for the discussion of this topic. >> >> Thank you for your help, >> >> Heidi Boos-Utley >> E-mail: hutley@greenhills.net >> URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily > Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to > run under Linux, Windows or Mac OS. It's free and uses Gecko, the same > rendering engine Firefox uses. Previously I used the Sea Monkey > WYSIWYG editor but was very unhappy with the voluminous, messy HTML it generated. > > > ------------------------------ > > Message: 4 > Date: Sun, 13 Oct 2013 07:16:02 -0500 > From: Billie Walsh <bilwalsh@swbell.net> > Subject: Re: [FreeHelp] FREEPAGES-HELP Digest, Vol 8, Issue 155 > To: freepages-help@rootsweb.com > Message-ID: <525A8F02.10602@swbell.net> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Bill reminded me of one, Kompozer. > > http://www.kompozer.net/ > > It's a WYSIWYG editor. I discovered a bad habit it has when helping a > friend with something. If you make a header or title bigger in several > steps it adds another "big" tag every time you make it bigger. What > you might wind up with is a "big big big big big big" situation [ I > left off the <>'s ]. It also does other unnecessary tagging but not as > much as some do. Overall it's not so bad. > > > > On 10/13/2013 06:51 AM, Bill Thompson wrote: >> On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: >>> Message: 5 >>> Date: Sat, 12 Oct 2013 10:23:14 -0500 >>> From: "Heidi Utley" <hutley@greenhills.net> >>> Subject: [FreeHelp] Off topice - Linux Ubuntu >>> To: <freepages-help@rootsweb.com> >>> Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> >>> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >>> reply-type=original >>> >>> Hi List, >>> >>> Does anybody know if there is a web editor that can be used in Linux Ubuntu? >>> Please let me know if there is a list for the discussion of this topic. >>> >>> Thank you for your help, >>> >>> Heidi Boos-Utley >>> E-mail: hutley@greenhills.net >>> URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily >> Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to >> run under Linux, Windows or Mac OS. It's free and uses Gecko, the >> same rendering engine Firefox uses. Previously I used the Sea Monkey >> WYSIWYG editor but was very unhappy with the voluminous, messy HTML it generated. >> >> ------------------------------- >> To unsubscribe from the list, please send an email to >> FREEPAGES-HELP-request@rootsweb.com 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. > > _ _... ..._ _ > _._ ._ ..... ._.. ... .._ > > > > ------------------------------ > > To contact the FREEPAGES-HELP list administrator, send an email to > FREEPAGES-HELP-admin@rootsweb.com. > > To post a message to the FREEPAGES-HELP mailing list, send an email to FREEPAGES-HELP@rootsweb.com. > > __________________________________________________________ > To unsubscribe from the list, please send an email to > FREEPAGES-HELP-request@rootsweb.com > with the word "unsubscribe" without the quotes in the subject and the > body of the email with no additional text. > > > End of FREEPAGES-HELP Digest, Vol 8, Issue 156 > ********************************************** ------------------------------- To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
Hello Heidi, At last I have got around to replying to your question. I googled your query and came up with a few forums http://ubuntuforums.org/showthread.php?t=1150028 and http://www.files32.com/downloads.asp?software=expression+web+ubuntu http://tips.webdesign10.com/using-linux-for-web-design-and-development-ubunt u I did see probably on one of these forums that Dreamweaver seems to cope with it. I would have thought if you could use EW easily with Linux then Pat would have said so. As they are two opposing programs, I guess you wouldn't be able to use it. My best wishes, Jill -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of Heidi Utley Sent: 12 October 2013 16:23 To: freepages-help@rootsweb.com Subject: [FreeHelp] Off topice - Linux Ubuntu Hi List, Does anybody know if there is a web editor that can be used in Linux Ubuntu? Please let me know if there is a list for the discussion of this topic. Thank you for your help, Heidi Boos-Utley E-mail: hutley@greenhills.net URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily ------------------------------- To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
On 10/14/2013 09:28 AM, Jill Muir wrote: > http://tips.webdesign10.com/using-linux-for-web-design-and-development-ubuntu One of the programs listed in the above link, Quanta+, was my absolute all time favorites, but unless you wish to run an older version of Linux with KDE3.x it no longer works. -- 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. _ _... ..._ _ _._ ._ ..... ._.. ... .._
This is what I was talking about, yesterday. Freepages. :) On Oct 14, 2013, at 3:00 AM, freepages-help-request@rootsweb.com wrote: > > > When replying to a digest message, quote only the specific message to which you are replying, removing the rest of the digest from your reply. Remember to change the subject of your reply so that it coincides with the message subject to which you are replying. > ***FREEPAGES HELP & FAQ*** > <http://helpdesk.rootsweb.com/FAQ/fpindex.html> > > > Today's Topics: > > 1. Re: Ext CSS & "th" (JFlorian) > 2. Slider software / code (Rawls Family) > 3. Re: FREEPAGES-HELP Digest, Vol 8, Issue 155 (Bill Thompson) > 4. Re: FREEPAGES-HELP Digest, Vol 8, Issue 155 (Billie Walsh) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 13 Oct 2013 03:45:07 -0400 > From: JFlorian <cageycat@gmail.com> > Subject: Re: [FreeHelp] Ext CSS & "th" > To: "LIST_freepages-help@rootsweb.com" <freepages-help@rootsweb.com> > Message-ID: > <CAE5hz-B_M2=ToD3Q7mbjYaAE5ZeJAOyNxLZRoOdYgyQys+G+Dg@mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Sat, Oct 12, 2013 at 9:06 AM, Patricia Geary <patgeary@comcast.net>wrote: > >> Why two separate tables? The table header should be part of the 2nd >> table > === > Pat, > > That's why I raised the question, to figure out how to have a single-cell > header with multiple-column table. Barry let me know about using colspan, > which I didn't know before. I'll try it when I'm able to work again this > coming week. > > Judy > > > ------------------------------ > > Message: 2 > Date: Sun, 13 Oct 2013 05:52:45 -0400 > From: Rawls Family <rawfam46@gmail.com> > Subject: [FreeHelp] Slider software / code > To: freepages-help@rootsweb.com > Message-ID: <525A6D6D.7000402@gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > There has been a lot of chat here re how to display pictures of late, > can someone point me towards a bit of simple code I can insert on a > webpage to read and display all the files/ pictures contained in a > particular folder in a 'slider' fasion- just a simple Next - Back button > to step through them. Please note I am NOT an acomplished HTML coder! > Thanks, Don R > -- > > From the scenic Klondike Hills, Grey County, Ontario, Canada. > Web site > http://freepages.family.rootsweb.ancestry.com/~rawlsofdorset/index.htm > <http://freepages.family.rootsweb.ancestry.com/%7Erawlsofdorset/index.htm> > Visit my Blog at http://ruralcanadian.blogspot.com/ > Democracy requires dialogue, please join us at > http://democracyunderfire.blogspot.com/ > > > > ------------------------------ > > Message: 3 > Date: Sun, 13 Oct 2013 07:51:19 -0400 > From: Bill Thompson <billthompson76@gmail.com> > Subject: Re: [FreeHelp] FREEPAGES-HELP Digest, Vol 8, Issue 155 > To: freepages-help@rootsweb.com > Message-ID: <525A8937.1090706@gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: >> Message: 5 >> Date: Sat, 12 Oct 2013 10:23:14 -0500 >> From: "Heidi Utley" <hutley@greenhills.net> >> Subject: [FreeHelp] Off topice - Linux Ubuntu >> To: <freepages-help@rootsweb.com> >> Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> >> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >> reply-type=original >> >> Hi List, >> >> Does anybody know if there is a web editor that can be used in Linux Ubuntu? >> Please let me know if there is a list for the discussion of this topic. >> >> Thank you for your help, >> >> Heidi Boos-Utley >> E-mail: hutley@greenhills.net >> URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily > Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to > run under Linux, Windows or Mac OS. It's free and uses Gecko, the same > rendering engine Firefox uses. Previously I used the Sea Monkey WYSIWYG > editor but was very unhappy with the voluminous, messy HTML it generated. > > > ------------------------------ > > Message: 4 > Date: Sun, 13 Oct 2013 07:16:02 -0500 > From: Billie Walsh <bilwalsh@swbell.net> > Subject: Re: [FreeHelp] FREEPAGES-HELP Digest, Vol 8, Issue 155 > To: freepages-help@rootsweb.com > Message-ID: <525A8F02.10602@swbell.net> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Bill reminded me of one, Kompozer. > > http://www.kompozer.net/ > > It's a WYSIWYG editor. I discovered a bad habit it has when helping a > friend with something. If you make a header or title bigger in several > steps it adds another "big" tag every time you make it bigger. What you > might wind up with is a "big big big big big big" situation [ I left off > the <>'s ]. It also does other unnecessary tagging but not as much as > some do. Overall it's not so bad. > > > > On 10/13/2013 06:51 AM, Bill Thompson wrote: >> On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: >>> Message: 5 >>> Date: Sat, 12 Oct 2013 10:23:14 -0500 >>> From: "Heidi Utley" <hutley@greenhills.net> >>> Subject: [FreeHelp] Off topice - Linux Ubuntu >>> To: <freepages-help@rootsweb.com> >>> Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> >>> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >>> reply-type=original >>> >>> Hi List, >>> >>> Does anybody know if there is a web editor that can be used in Linux Ubuntu? >>> Please let me know if there is a list for the discussion of this topic. >>> >>> Thank you for your help, >>> >>> Heidi Boos-Utley >>> E-mail: hutley@greenhills.net >>> URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily >> Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to >> run under Linux, Windows or Mac OS. It's free and uses Gecko, the same >> rendering engine Firefox uses. Previously I used the Sea Monkey WYSIWYG >> editor but was very unhappy with the voluminous, messy HTML it generated. >> >> ------------------------------- >> To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com 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. > > _ _... ..._ _ > _._ ._ ..... ._.. ... .._ > > > > ------------------------------ > > To contact the FREEPAGES-HELP list administrator, send an email to > FREEPAGES-HELP-admin@rootsweb.com. > > To post a message to the FREEPAGES-HELP mailing list, send an email to FREEPAGES-HELP@rootsweb.com. > > __________________________________________________________ > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com > with the word "unsubscribe" without the quotes in the subject and the body of the > email with no additional text. > > > End of FREEPAGES-HELP Digest, Vol 8, Issue 156 > **********************************************
On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: > Message: 5 > Date: Sat, 12 Oct 2013 10:23:14 -0500 > From: "Heidi Utley" <hutley@greenhills.net> > Subject: [FreeHelp] Off topice - Linux Ubuntu > To: <freepages-help@rootsweb.com> > Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > Hi List, > > Does anybody know if there is a web editor that can be used in Linux Ubuntu? > Please let me know if there is a list for the discussion of this topic. > > Thank you for your help, > > Heidi Boos-Utley > E-mail: hutley@greenhills.net > URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to run under Linux, Windows or Mac OS. It's free and uses Gecko, the same rendering engine Firefox uses. Previously I used the Sea Monkey WYSIWYG editor but was very unhappy with the voluminous, messy HTML it generated.
Bill reminded me of one, Kompozer. http://www.kompozer.net/ It's a WYSIWYG editor. I discovered a bad habit it has when helping a friend with something. If you make a header or title bigger in several steps it adds another "big" tag every time you make it bigger. What you might wind up with is a "big big big big big big" situation [ I left off the <>'s ]. It also does other unnecessary tagging but not as much as some do. Overall it's not so bad. On 10/13/2013 06:51 AM, Bill Thompson wrote: > On 10/13/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: >> Message: 5 >> Date: Sat, 12 Oct 2013 10:23:14 -0500 >> From: "Heidi Utley" <hutley@greenhills.net> >> Subject: [FreeHelp] Off topice - Linux Ubuntu >> To: <freepages-help@rootsweb.com> >> Message-ID: <3474592FA8CC4541A1365E9C3651D352@utley6b7d845cc> >> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >> reply-type=original >> >> Hi List, >> >> Does anybody know if there is a web editor that can be used in Linux Ubuntu? >> Please let me know if there is a list for the discussion of this topic. >> >> Thank you for your help, >> >> Heidi Boos-Utley >> E-mail: hutley@greenhills.net >> URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily > Heidi, I use Blue Griffon which has a WYSIYG editor. It's supposed to > run under Linux, Windows or Mac OS. It's free and uses Gecko, the same > rendering engine Firefox uses. Previously I used the Sea Monkey WYSIWYG > editor but was very unhappy with the voluminous, messy HTML it generated. > > ------------------------------- > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com 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. _ _... ..._ _ _._ ._ ..... ._.. ... .._
There has been a lot of chat here re how to display pictures of late, can someone point me towards a bit of simple code I can insert on a webpage to read and display all the files/ pictures contained in a particular folder in a 'slider' fasion- just a simple Next - Back button to step through them. Please note I am NOT an acomplished HTML coder! Thanks, Don R -- From the scenic Klondike Hills, Grey County, Ontario, Canada. Web site http://freepages.family.rootsweb.ancestry.com/~rawlsofdorset/index.htm <http://freepages.family.rootsweb.ancestry.com/%7Erawlsofdorset/index.htm> Visit my Blog at http://ruralcanadian.blogspot.com/ Democracy requires dialogue, please join us at http://democracyunderfire.blogspot.com/