RootsWeb.com Mailing Lists
Previous Page      Next Page
Total: 6020/10000
    1. [FreeHelp] Patterned backgrounds
    2. Valerie lirakis
    3. Can you browse patterned backgrounds in EW similar to FP.? I'm trying to get a patterned background of a particular colour for my web page, but all I seem able to get is a water mark, which is not what I want. Valerie

    10/10/2013 06:43:41
    1. [FreeHelp] Links
    2. Valerie lirakis
    3. The font colour of my link buttons are in white against a brown background, which is fine for the buttons. However, I need to add another colour, i.e. brown, for links in the container, which has a white background. Can anyone give me the css code and html for this please. Valerie

    10/10/2013 06:39:59
    1. Re: [FreeHelp] Patterned backgrounds
    2. Patricia Geary
    3. At 07:43 AM 10/10/2013, you wrote: >Can you browse patterned backgrounds in EW similar to FP.? I'm trying to get > a patterned background of a particular colour for my web page, but all I >seem able to get is a water mark, which is not what I want. =========== I'm assuming you are talking about the theme backgrounds in FP? If so no as EW does not support themes. You can view a very small thumbnail and info on any images you have by using the folder list panel. Panels > Folder List Click the + next to the folder you want to view to expand it then using your cursor move down the list. The name of the image will be displayed with a small thumbnail, the file size and the image dimensions. When I am working on a new template, I save a series of background images to a folder. I can then try out the images as the background to see how I like various ones. Make sure to delete any you do not use from the folder when you finish. A food source for background images is http://www.eosdev.com/eosdev_Backgrounds.htm http://www.theinspirationgallery.com/ pat

    10/10/2013 02:37:36
    1. Re: [FreeHelp] Links
    2. Patricia Geary
    3. At 07:39 AM 10/10/2013, you wrote: >The font colour of my link buttons are in white against a brown background, >which is fine for the buttons. However, I need to add another colour, i.e. >brown, for links in the container, which has a white background. Can anyone >give me the css code and html for this please. =============== Would be something like this changing the colors to your colors and container name to yours: #content a:link {color:#FF0000;} /* unvisited link */ #content a:visited {color:#00FF00;} /* visited link */ #content a:hover {color:#FF00FF;} /* mouse over link */ #content a:active {color:#0000FF;} /* selected link */ Set whatever style rules you want. Read more http://www.w3schools.com/css/css_pseudo_classes.asp pat

    10/10/2013 02:37:13
    1. [FreeHelp] Text within a layer
    2. Valerie lirakis
    3. Can anyone tell me how to alter the size and style of text within a layer. I've sized and positioned it correctly, but can't figure out how to alter the text, which is too big for the box. The css code would be appreciated. Valerie

    10/08/2013 09:46:12
    1. [FreeHelp] Adding a pattern to backgrounds in EW
    2. Valerie lirakis
    3. Is it possible to add a pattern to background colours in EW similar to those in FP, and if not, is there any way I can import the gif from another computer? Valerie

    10/08/2013 06:44:48
    1. Re: [FreeHelp] Text within a layer
    2. Pat Geary
    3. At 10:46 AM 10/8/2013, you wrote: >Can anyone tell me how to alter the size and style of text within a layer. >I've sized and positioned it correctly, but can't figure out how to alter >the text, which is too big for the box. The css code would be appreciated. Make sure the container does NOT have a specified height. Add font-size: .85em; or whatever to the container. If you are using a layer in EW it is going to be absolutely positioned Unless you thoroughly understand that concept use a <div> that is not absolutely positioned. pat Expression Web 4 Tutorials From Install to Publish and More Updated May 2012 to include changes with SP 1 and 2 - F REE http://www.expression-web-tutorials.com/ew4-tutorials-ebook.html

    10/08/2013 04:52:02
    1. Re: [FreeHelp] Adding a pattern to backgrounds in EW
    2. Pat Geary
    3. At 07:44 AM 10/8/2013, you wrote: >Is it possible to add a pattern to background colours in EW similar to >those in FP, and if not, is there any way I can import the gif >from another computer? Do you mean a background image? If so yes. It would be written like so: body { background-image:url('paper.gif'); background-color:#cccccc; } or css shorthand body { background: #cccccc url('paper.gif'); } http://www.w3schools.com/cssref/pr_background-image.asp Copy the file to a thumbdrive and move it to the other computer or send it to yourself via email. pat

    10/08/2013 02:18:38
    1. Re: [FreeHelp] Ext CSS: How do I combine class="small" in a span inside a class="table" (W3 <p> errors)
    2. Barry Carlson
    3. Judy, I suspect the following is what you may be trying to achieve - <!--// <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Judy Test</title> <style> td.small {font-size:12px;line-height:18px} </style> </head> <body> <div> <table class="table"> <tr> <td class="small"><strong>Source:</strong><br> <a href="http://history.rootsweb.com/~libeacons/1875personal_histories_jackson.htm">http://history.rootsweb.com/~libeacons/1875personal_histories_jackson.htm</a><br> <a href="http://www.heritagepursuit.com/Hancock/HancockPortage.htm">http://www.heritagepursuit.com/Hancock/HancockPortage.htm</a><br> Typed and submitted to the Washington County PA Rootsweb Mailing List by xx XXX. </td> </tr> </table> </div> </body> </html> //--> Change the font-size and line-height to suit. Barry .................. On Sun, 06 Oct 2013 09:27:35 +1300, JFlorian <cageycat@gmail.com> wrote: > I should add to my question: > > I would like the 4 lines separate, rather than the lines right against > each > other. And I need the 2 links on my page separated because they started > to > create 1 clickable link rather than 2, which is why I used a <...p> to > separate them. But I could use br instead, I suppose? > > Judy > ------------------------------- > 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

    10/06/2013 03:51:37
    1. Re: [FreeHelp] Ext CSS: How do I combine class="small" in a span inside a class="table" (W3 <p> errors)
    2. JFlorian
    3. Barry, Yep, <...td class="small"> fixed it right up. Learned another piece of how to write the markup. Thanks! Judy

    10/05/2013 01:29:04
    1. Re: [FreeHelp] Ext CSS: How do I combine class="small" in a span inside a class="table" (W3 <p> errors)
    2. JFlorian
    3. I should add to my question: I would like the 4 lines separate, rather than the lines right against each other. And I need the 2 links on my page separated because they started to create 1 clickable link rather than 2, which is why I used a <...p> to separate them. But I could use br instead, I suppose? Judy

    10/05/2013 10:27:35
    1. [FreeHelp] Ext CSS: How do I combine class="small" in a span inside a class="table" (W3 <p> errors)
    2. JFlorian
    3. Validator is complaining about 3 instances of <...p> . The only difference in mine and Tidy is my use of span and a class for small. CSS has .small for smaller text. I want to use small text only on the Source and Submitter info on select pages. Source/Submitter is in a 1-column, 1-cell Table (External CSS: .table) How do I write the class=small inside of a class="table"? Small Text needs to apply to all of the text shown below. What are times to use a "span" and how do I write a "span" for this? MINE <...div> <....table class="table"> <...tr> <...td> <...span class="small"><strong>Source:</strong> <p>http://. history.rootsweb.com/~libeacons/1875personal_histories_jackson.htm</p> <p>http://www.heritagepursuit.com/Hancock/HancockPortage.htm</p> <p>Typed and submitted to the Washington County PA Rootsweb Mailing List by xx XXX.</p> </span> </td> </tr> </table> </div> W3 for all 3 <..p> instances says "document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag" (whatever that means!). TIDY shows this: <...div> <...table class="table"> <...tr> <...td><....strong>Source:</strong> <...p>http://. history.rootsweb.com/~libeacons/1875personal_histories_jackson.htm</p> <...p>http://www.heritagepursuit.com/Hancock/HancockPortage.htm</p> <...p>Typed and submitted to the Washington County PA Rootsweb Mailing List by xx XXX.</p> </td> </tr> </table> </div> Hope I wrote my question correctly. Judy

    10/05/2013 10:18:36
    1. [FreeHelp] Photo Gallery Template
    2. Patricia Geary
    3. For any of you who may be interested. http://freepages.genealogy.rootsweb.ancestry.com/~gearyfamily/working-with-photo-gallery.html The zipped file is actually located on my Genealogy Web Creations site since RW does not allow zipped files. Let me know if you have problems, questions, or suggestions. pat Pat Geary Working With Rootsweb FreePages Accounts EBook (free) http://freepages.genealogy.rootsweb.ancestry.com/~gearyfamily/rootsweb-freepages-ebook.html

    10/05/2013 05:15:07
    1. Re: [FreeHelp] Expression Web
    2. Jill Muir
    3. Hi Valerie, Or do it like I have here: http://www.welshchapelsandchurches.org/bridgend-north-1/index.htm My best wishes, Jill -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of JFlorian Sent: 04 October 2013 22:37 To: LIST_freepages-help@rootsweb.com Subject: Re: [FreeHelp] Expression Web Hi Valerie, This is off the subject, but if you wanted to save a few dozen to hundreds of words, you could put at the top of the page something like, "Photos kindly submitted by the persons named below each photo." Then in the boxes, you could shorten "Photo kindly supplied by" to something like: Submitted by: Name or Submission from: Name or just Submitter: Name Just a way to save you from typing or copying that longer phrase so many times. Judy ------------------------------- 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

    10/05/2013 02:30:17
    1. Re: [FreeHelp] Re(8); 72
    2. Billie Walsh
    3. "meways" your e-mail has been hacked. I suggest that you change your password immediately On 10/05/2013 04:56 AM, meways@comcast.net wrote: > <Spam deleted> -- 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. _ _... ..._ _ _._ ._ ..... ._.. ... .._

    10/05/2013 01:51:34
    1. Re: [FreeHelp] Expression Web
    2. Jill Muir
    3. Thanks Pat, this looks a great site - http://www.bestcssbuttongenerator.com/ My best wishes, Jill -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of Pat Geary Sent: 04 October 2013 17:15 To: freepages-help@rootsweb.com Subject: Re: [FreeHelp] Expression Web Valerie, this is an example of what you can do using an external style sheet and cleaned up html code http://freepages.genealogy.rootsweb.ancestry.com/~gearyfamily/expression-web /photo-gallery.html The style sheet is commented so you can see what each set of style rules does. Button styles were generated using this site http://www.bestcssbuttongenerator.com/ They can be as fancy or as simple as you want them to be. Buttons are simply links within a centered p tag. Most of the photograph links do not work as I left the relative links rather than making them absolute. If you want the pages, I can send them to you in a zipped file. Page does not validate as you have an extra alt tag somewhere and are missing one somewhere. If anyone is interested in the gallery and css, I can easily create just a blank table page you can use. It does not require EW to be able to use the page and supporting css file. pat ------------------------------- 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

    10/04/2013 11:55:27
    1. Re: [FreeHelp] Expression Web
    2. JFlorian
    3. Hi Valerie, This is off the subject, but if you wanted to save a few dozen to hundreds of words, you could put at the top of the page something like, "Photos kindly submitted by the persons named below each photo." Then in the boxes, you could shorten "Photo kindly supplied by" to something like: Submitted by: Name or Submission from: Name or just Submitter: Name Just a way to save you from typing or copying that longer phrase so many times. Judy

    10/04/2013 11:37:25
    1. Re: [FreeHelp] 1. Advice on web navigation (Ralph Taylor)
    2. Jill Muir
    3. Hi Bill, Valerie, like several of us are using Expression Web and there is a Find/Replace function within this program and I use it a lot when cleaning up someone's website. Which I seem to do most of the time these days! Groan! Oops I may well have misunderstood your sentence! My best wishes, Jill -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of Bill Thompson Sent: 03 October 2013 22:00 To: freepages-help@rootsweb.com Subject: [FreeHelp] 1. Advice on web navigation (Ralph Taylor) This may not be what Valerie was asking. but it may be useful to remind Windows users that WordPad is still on your computer, and that it can do global searches of the contents of an entire folder/directory. And even though Search/Replace is not applicable to Valarie's question, in cases where it is appropriate, WordPad can to that to an entire directory in one operation. On 10/3/2013 3:00 AM, freepages-help-request@rootsweb.com wrote: > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 2 Oct 2013 12:44:34 -0600 > From: "Ralph Taylor" <rt-sails@comcast.net> > Subject: [FreeHelp] Advice on web navigation > To: <freepages-help@rootsweb.com> > Message-ID: <866B2C1415EB4F12929B462587806C03@Ralphs> > Content-Type: text/plain; charset="us-ascii" > > Valerie wrote (in part): > "I've recently received an email asking if there is any way one could search > the photogallery without having to click on every individual image. I can > only assume that what is meant is a separate list relating to each > reference... However, I just wonder if anyone might have any ideas on this." > > Pat Asher, at > http://freepages.computers.rootsweb.ancestry.com/~pasher/anchors.htm, > suggests an answer: Create "anchors", unique URLs within the same page. > These anchors can then be linked from elsewhere on your site (or other > sites). > > Let's assume the anchor's name or ID is "pic3274" and it's in the page > "pics.htm". To link to it, use the tag > <.a href="pics.htm#pic3273">text</a>. > It's the pound sign (#) that directs to the location within the page. > > The technicians seem to write about this as a "page fragment" and the anchor > as a "fragid". Not sure if they pronounce it fra-gid, fra-jid or frag-I-D. > > But, there's a problem in creating the URL "pic3274" in pics.htm. Pat's way > is to enclose the image with the tag </a name="pic3274">image</a>. That was > valid up through HTML4.01, but the name attribute is not supported in HTML5; > it may soon go away entirely. Now, one must use the id= attribute and it's > not allowed in an "<a" tag; so it's not a simple matter of doing a global > search-and-replace from name= to id=. > > How to resolve the dilemma? > W3C, at http://www.w3schools.com/tags/att_global_id.asp, says "In HTML5, the > id attribute can be used on any HTML element (it will validate on any HTML > element. However, it is not necessarily useful)." It also says "The id > attribute specifies a unique id for an HTML element (the value must be > unique within the HTML document)." And, each id "Must contain at least one > character {rt: empty strings direct to the top of the doc}; Must not contain > any space characters; In HTML, all values are case-insensitive", > > So, you can assign a unique id to the HTML element to which you want to > direct a viewer. > > For images, one could put the id attribute within the image tag, e.g, > <.img id="pic3274" src="images/pic3274">. > One could also do it with headings, paragraphs, list items, table cells, > etc. (You could even create a span to put an id to.) > > Thanks, Valerie; your question helped me work through this issue. Because > I've been using the name attribute a lot, I've got some upgrading to do and > wasn't sure quite how. > -rt_/) ------------------------------- 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

    10/04/2013 11:10:18
    1. Re: [FreeHelp] Expression Web
    2. Jill Muir
    3. Hi Valerie, I suppose that you did add another row to your gallery table didn't you? You should be able to add the photos, simply by cutting and pasting from one that works into the new cell within the new row and then change the image. My best wishes, Jill Oxfordshire, UK -----Original Message----- From: freepages-help-bounces@rootsweb.com [mailto:freepages-help-bounces@rootsweb.com] On Behalf Of Valerie lirakis Sent: 04 October 2013 08:46 To: freepages-help@rootsweb.com Subject: [FreeHelp] Expression Web This is a question probably best answered by Pat, as it concerns EW. For many years I've used FP and used the drag and drop method of uploading my images/web pages, etc.and in instances where I needed to add more images to a page I would copy and paste the code required in file manager, and add the http. I was therefore delighted when I recently uploaded new pages done with EW to find that all my images appeared as if by magic, without having to go through the laborious task of adding the http to every image. However, my delight was short lived when I added three more images yesterday to my page to find that none of them showed, not even a blank square! I also tried to add another line in the title of the page, which had the effect of pushing everything down a line, and, yes you've guessed it, ALL the images disappeared. Luckily I'd previewed it before saving. My question is, how can I add more images or amend an existing web page without this happening. Valerie ------------------------------- 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

    10/04/2013 08:50:07
    1. Re: [FreeHelp] Expression Web
    2. Pat Geary
    3. Valerie, this is an example of what you can do using an external style sheet and cleaned up html code http://freepages.genealogy.rootsweb.ancestry.com/~gearyfamily/expression-web/photo-gallery.html The style sheet is commented so you can see what each set of style rules does. Button styles were generated using this site http://www.bestcssbuttongenerator.com/ They can be as fancy or as simple as you want them to be. Buttons are simply links within a centered p tag. Most of the photograph links do not work as I left the relative links rather than making them absolute. If you want the pages, I can send them to you in a zipped file. Page does not validate as you have an extra alt tag somewhere and are missing one somewhere. If anyone is interested in the gallery and css, I can easily create just a blank table page you can use. It does not require EW to be able to use the page and supporting css file. pat

    10/04/2013 06:15:20